/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

/* =========================
   VARIABLES
========================= */

:root{

    --red:#FF000D;
    --text:#111111;
    --muted:#666666;
    --light:#f7f7f7;

}

/* =========================
   GLOBAL
========================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section-title{

    text-align:center;

    font-size:4rem;
    font-weight:800;

    margin-bottom:70px;

    letter-spacing:-2px;
}

/* =========================
   NAVBAR
========================= */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:20px 7%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,0.04);

}

.nav-logo img{

    height:60px;
}

.nav-btn{

    text-decoration:none;

    color:white;

    background:var(--red);

    padding:14px 26px;

    border-radius:999px;

    font-weight:600;

    transition:0.35s ease;
}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(177,18,38,0.25);
}

/* =========================
   HERO
========================= */

.hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 20px;
}

.hero-content{

    max-width:1100px;
}

.hero-logo{

    width:320px;

    max-width:80%;

    margin-bottom:40px;

    animation:fadeUp 1.4s ease;
}

.hero h1{

    font-size:5rem;

    line-height:1.05;

    font-weight:900;

    letter-spacing:0px;

    margin-bottom:25px;

    animation:fadeUp 1.9s ease;
}

.hero p{

    font-size:1.25rem;

    color:var(--muted);

    max-width:700px;

    margin:auto;

    line-height:1.8;

    animation:fadeUp 1.8s ease;
}

.hero-btn{

    display:inline-block;

    margin-top:40px;

    text-decoration:none;

    color:white;

    background:var(--red);

    padding:18px 34px;

    border-radius:999px;

    font-weight:600;

    transition:0.3s;

    animation:fadeUp 2s ease;
}

.hero-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(177,18,38,0.25);
}

.scroll-down{

    margin-top:50px;

    font-size:2rem;

    animation:float 2s infinite;

    opacity:0.5;
}

/* =========================
   SHOWCASE
========================= */

.showcase{

    padding:0;
}

.showcase-image{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;
}

.showcase-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1.03);

    transition:transform 1.5s ease;
}

.showcase-image:hover img{

    transform:scale(1.08);
}

.image-overlay{

    position:absolute;

    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,0.25);
}

.image-overlay h2{

    color:white;

    font-size:5rem;

    text-align:center;

    letter-spacing:-2px;

    text-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* =========================
   ABOUT
========================= */

.about{

    padding:140px 0;
}

.about-text{

    max-width:950px;

    margin:auto;

    font-size:1.2rem;

    line-height:2;

    color:var(--muted);
}

.about-text p{

    margin-bottom:35px;
}

.about strong{

    color:var(--text);
}

/* =========================
   STATS
========================= */

.stats{

    padding:120px 8%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    background:#fafafa;
}

.stat-card{

    background:white;

    padding:60px 40px;

    text-align:center;

    border-radius:30px;

    transition:0.4s ease;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.stat-card:hover{

    transform:translateY(-10px);
}

.stat-card h3{

    font-size:4rem;

    color:var(--red);

    margin-bottom:15px;
}

.stat-card p{

    color:var(--muted);

    font-size:1rem;
}

/* =========================
   EVENTS
========================= */

.events{

    padding:140px 0;
}

.events-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

.event-card{

    background:white;

    padding:70px;

    font-size:2rem;

    font-weight:700;

    border-radius:30px;

    border:1px solid rgba(0,0,0,0.05);

    transition:0.4s ease;

    cursor:pointer;
}

.event-card:hover{

    background:var(--red);

    color:white;

    transform:translateY(-8px);
}

/* =========================
   PROMO
========================= */

.promo{

    padding:160px 8%;

    background:#111111;

    color:white;

    text-align:center;
}

.promo-content{

    max-width:900px;

    margin:auto;
}

.promo h2{

    font-size:4rem;

    margin-bottom:30px;
}

.promo p{

    color:rgba(255,255,255,0.75);

    line-height:1.9;

    font-size:1.15rem;

    margin-bottom:45px;
}

.promo-btn{

    display:inline-block;

    text-decoration:none;

    background:white;

    color:#111111;

    padding:18px 36px;

    border-radius:999px;

    font-weight:700;

    transition:0.3s;
}

.promo-btn:hover{

    transform:translateY(-4px);
}

/* =========================
   GALLERY
========================= */

.gallery{

    padding:140px 5%;
}

.gallery-grid{

    column-count:4;

    column-gap:20px;
}

.gallery-grid img{

    width:100%;

    margin-bottom:20px;

    border-radius:20px;

    display:block;

    transition:0.5s ease;

    cursor:pointer;
}

.gallery-grid img:hover{

    transform:scale(1.03);
}

/* =========================
   CONTACT
========================= */

.contact{

    padding:150px 8%;

    text-align:center;

    background:#fafafa;
}

.contact-content{

    max-width:1000px;

    margin:auto;
}

.contact h2{

    font-size:4rem;

    margin-bottom:25px;
}

.contact p{

    color:var(--muted);

    margin-bottom:50px;

    line-height:1.8;
}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:20px;

    flex-wrap:wrap;
}

.contact-buttons a{

    text-decoration:none;

    background:var(--red);

    color:white;

    padding:18px 32px;

    border-radius:999px;

    font-weight:600;

    transition:0.3s ease;
}

.contact-buttons a:hover{

    transform:translateY(-4px);
}

/* =========================
   FOOTER
========================= */

footer{

    padding:80px 8%;

    text-align:center;
}

footer img{

    width:140px;

    margin-bottom:25px;
}

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-bottom:25px;
}

.footer-links a{

    text-decoration:none;

    color:var(--text);

    font-weight:600;
}

footer p{

    color:var(--muted);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all 1s ease;
}

.reveal.active{

    opacity:1;

    transform:translateY(0);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(60px);
    }

    to{

        opacity:1;
        transform:translateY(0);
    }
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px){

    .hero h1{

        font-size:4.5rem;
    }

    .image-overlay h2{

        font-size:3.5rem;
    }

    .gallery-grid{

        column-count:3;
    }

    .stats{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .navbar{

        padding:18px 5%;
    }

    .nav-logo img{

        height:45px;
    }

    .nav-btn{

        display:none;
    }

    .hero h1{

        font-size:3rem;
    }

    .hero-logo{

        width:220px;
    }

    .section-title{

        font-size:2.6rem;
    }

    .promo h2,
    .contact h2{

        font-size:2.8rem;
    }

    .events-grid{

        grid-template-columns:1fr;
    }

    .gallery-grid{

        column-count:2;
    }

    .image-overlay h2{

        font-size:2.5rem;
        padding:0 20px;
    }
}

@media(max-width:500px){

    .gallery-grid{

        column-count:1;
    }

    .hero h1{

        font-size:2.3rem;
    }

    .contact-buttons{

        flex-direction:column;
    }

    .contact-buttons a{

        width:100%;
    }
}
@media (max-width:768px){

}
/* =========================
   UPCOMING EVENTS + EVENT DETAIL
========================= */

.hero-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:40px;
}

.hero-actions .hero-btn{
    margin-top:0;
}

.hero-btn.secondary{
    background:#111111;
    color:#ffffff;
}

.upcoming-events{
    padding:140px 0;
    background:#fff7f2;
}

.upcoming-card{
    display:grid;
    grid-template-columns:360px 1fr;
    gap:34px;
    align-items:stretch;
    max-width:1050px;
    margin:0 auto;
    text-decoration:none;
    color:inherit;
    background:#ffffff;
    border-radius:34px;
    overflow:hidden;
    border:1px solid rgba(255,0,13,0.14);
    box-shadow:0 22px 55px rgba(120,0,0,0.10);
    transition:0.35s ease;
}

.upcoming-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(120,0,0,0.16);
}

.upcoming-poster,
.bms-poster,
.detail-poster{
    position:relative;
    overflow:hidden;
    background:#111111;
}

.upcoming-poster img,
.bms-poster img,
.detail-poster img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:saturate(1.05) contrast(1.02);
}

.upcoming-date-badge,
.bms-date,
.detail-date{
    position:absolute;
    top:18px;
    left:18px;
    background:#ff000d;
    color:#ffffff;
    padding:11px 14px;
    border-radius:14px;
    font-weight:900;
    letter-spacing:1px;
}

.upcoming-info{
    padding:54px 46px;
}

.upcoming-label,
.page-eyebrow{
    color:#ff000d;
    font-size:12px;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.upcoming-info h3{
    font-size:2.8rem;
    line-height:1.05;
    margin-bottom:20px;
}

.upcoming-info p{
    color:#666666;
    line-height:1.7;
    margin-bottom:8px;
}

.upcoming-info span,
.bms-action,
.book-now-main{
    display:inline-block;
    margin-top:24px;
    background:#ff000d;
    color:#ffffff;
    padding:15px 28px;
    border-radius:999px;
    font-weight:800;
}

.events-page,
.event-detail-page{
    min-height:100vh;
    background:#fff7f2;
    padding-top:115px;
}

.events-hero{
    text-align:center;
    padding:80px 20px 40px;
}

.events-hero h1{
    font-size:4.5rem;
    margin-bottom:18px;
}

.events-hero p{
    color:#666666;
    font-size:1.15rem;
}

.event-list-wrap{
    width:90%;
    max-width:1150px;
    margin:0 auto 120px;
}

.bms-event-card{
    display:grid;
    grid-template-columns:250px 1fr auto;
    gap:28px;
    align-items:center;
    background:#ffffff;
    color:inherit;
    text-decoration:none;
    border-radius:28px;
    padding:22px;
    border:1px solid rgba(255,0,13,0.12);
    box-shadow:0 18px 45px rgba(120,0,0,0.10);
    transition:0.3s ease;
}

.bms-event-card:hover{
    transform:translateY(-6px);
}

.bms-poster{
    height:330px;
    border-radius:22px;
}

.bms-details h2{
    font-size:2.5rem;
    margin-bottom:18px;
}

.bms-details p{
    color:#666666;
    line-height:1.7;
}

.bms-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}

.bms-tags span{
    padding:8px 12px;
    border-radius:999px;
    background:#fff0ed;
    color:#ff000d;
    font-size:13px;
    font-weight:700;
}

.bms-action{
    margin-top:0;
    white-space:nowrap;
}

.event-detail-hero{
    width:90%;
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:440px 1fr;
    gap:60px;
    align-items:center;
    padding:80px 0;
}

.detail-poster{
    height:590px;
    border-radius:34px;
    box-shadow:0 28px 70px rgba(120,0,0,0.18);
}

.detail-content h1{
    font-size:4.7rem;
    line-height:1.02;
    margin-bottom:18px;
}

.detail-subtitle{
    font-size:1.25rem;
    color:#684747;
    margin-bottom:34px;
}

.detail-meta-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:34px;
}

.detail-meta-grid div,
.ticket-tier-grid div{
    background:#ffffff;
    border:1px solid rgba(255,0,13,0.12);
    border-radius:18px;
    padding:22px;
}

.detail-meta-grid span{
    display:block;
    color:#777777;
    font-size:13px;
    margin-bottom:8px;
}

.detail-meta-grid strong{
    font-size:1.05rem;
}

.book-now-main{
    text-decoration:none;
    font-size:1.05rem;
    padding:18px 38px;
}

.event-info-section{
    background:#ffffff;
    padding:90px 0 120px;
}

.detail-copy{
    max-width:950px;
}

.detail-copy h2{
    font-size:2.3rem;
    margin-bottom:18px;
}

.detail-copy p{
    color:#666666;
    line-height:1.9;
    font-size:1.1rem;
    margin-bottom:44px;
}

.ticket-tier-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.ticket-tier-grid strong,
.ticket-tier-grid span{
    display:block;
}

.ticket-tier-grid strong{
    margin-bottom:8px;
    font-size:1.2rem;
}

.ticket-tier-grid span{
    color:#ff000d;
    font-weight:900;
    font-size:1.6rem;
}

@media(max-width:900px){
    .upcoming-card,
    .bms-event-card,
    .event-detail-hero{
        grid-template-columns:1fr;
    }

    .upcoming-poster,
    .bms-poster{
        height:360px;
    }

    .detail-poster{
        height:430px;
    }

    .upcoming-info h3,
    .events-hero h1,
    .detail-content h1{
        font-size:2.7rem;
    }

    .bms-action{
        text-align:center;
    }

    .detail-meta-grid,
    .ticket-tier-grid{
        grid-template-columns:1fr;
    }
}
