@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7fafc;
    color:#111827;
    overflow-x:hidden;
}

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

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(0,0,0,0.06);
    z-index:1000;
}

.logo{
    font-size:34px;
    font-weight:800;
    color:#0f172a;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#0f172a;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#2563eb;
}

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

.hero{
    min-height:100vh;
    padding:130px 8% 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    background:linear-gradient(
        135deg,
        #eff6ff,
        #ffffff,
        #dbeafe
    );
}

.hero-left{
    flex:1;
}

.powered{
    color:#2563eb;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.hero h1{
    font-size:110px;
    line-height:1;
    font-weight:800;
    color:#0f172a;
}

.hero h2{
    margin-top:15px;
    font-size:42px;
    line-height:1.2;
    color:#1e293b;
}

.hero-description{
    margin-top:20px;
    max-width:650px;
    color:#64748b;
    line-height:1.8;
    font-size:18px;
}

.event-details{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.detail-box{
    background:white;
    padding:18px 22px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.detail-box span{
    display:block;
    color:#64748b;
    font-size:14px;
}

.detail-box strong{
    color:#0f172a;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#2563eb;
    color:white;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 15px 30px rgba(37,99,235,.25);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    background:white;
    color:#2563eb;
    border:2px solid #2563eb;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:600;
}

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

.hero-right{
    flex:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.hero-right img{
    width:100%;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(37,99,235,.15);
    transition:.4s;
}

.hero-right img:hover{
    transform:translateY(-10px);
}

.img1{
    grid-row:span 2;
    height:520px;
}

.img2,
.img3{
    height:250px;
}

/* =========================
   COMMON
========================= */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#0f172a;
}

.section-title p{
    color:#64748b;
    margin-top:10px;
}

/* =========================
   COUNTDOWN
========================= */

.countdown-section{
    background:#0f172a;
    color:white;
    text-align:center;
}

.countdown-section h2{
    margin-bottom:40px;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.count-card{
    background:#1e293b;
    padding:25px;
    border-radius:20px;
    min-width:130px;
}

.count-card span{
    font-size:55px;
    font-weight:800;
}

.count-card p{
    margin-top:8px;
    color:#cbd5e1;
}

/* =========================
   TICKETS
========================= */

.ticket-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.ticket-card{
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
}

.ticket-card:hover{
    transform:translateY(-8px);
}

.featured{
    border:3px solid #2563eb;
    transform:scale(1.04);
}

.popular-tag{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#2563eb;
    color:white;
    padding:6px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.ticket-card h3{
    text-align:center;
    margin-bottom:15px;
}

.price{
    text-align:center;
    font-size:48px;
    font-weight:800;
    color:#2563eb;
}

.per-person{
    text-align:center;
    color:#64748b;
    margin-bottom:25px;
}

.ticket-card ul{
    list-style:none;
}

.ticket-card ul li{
    margin-bottom:12px;
    color:#334155;
}

.book-btn{
    width:100%;
    margin-top:25px;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#2563eb;
    color:white;
    font-weight:600;
    cursor:pointer;
}

/* =========================
   HIGHLIGHTS
========================= */

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.highlight-card{
    background:white;
    text-align:center;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:600;
}

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

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.04);
}

/* =========================
   VENUE
========================= */

.venue-card{
    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.venue-card h3{
    margin-bottom:15px;
}

/* =========================
   FAQ
========================= */

.faq-item{
    max-width:900px;
    margin:20px auto;
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.faq-item h3{
    margin-bottom:10px;
}

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

.contact{
    background:#0f172a;
    color:white;
    text-align:center;
}

.contact h2{
    margin-bottom:20px;
}

.contact p{
    margin-top:10px;
    color:#cbd5e1;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:14px 22px;
    border-radius:50px;
    font-weight:600;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* =========================
   STICKY BOOK
========================= */

.sticky-book{
    position:fixed;
    left:20px;
    bottom:20px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-weight:700;
    z-index:999;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero h1{
        font-size:70px;
    }

    .hero h2{
        font-size:30px;
    }

    .hero-description{
        margin:auto;
        margin-top:20px;
    }

    .event-details{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-right{
        width:100%;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .featured{
        transform:none;
    }
}

@media(max-width:600px){

    .hero h1{
        font-size:52px;
    }

    .count-card{
        min-width:100px;
    }

    .count-card span{
        font-size:38px;
    }

    .sticky-book{
        left:10px;
        bottom:10px;
        padding:12px 18px;
    }

    .whatsapp-btn{
        right:10px;
        bottom:10px;
    }
}