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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#090909;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

section{
    padding:100px 0;
}

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

.section-title h2{
    font-size:2.6rem;
    color:#FFD700;
    margin-bottom:15px;
}

.section-title p{
    color:#ccc;
    max-width:700px;
    margin:auto;
}

/* ===========================
   LOADER
=========================== */

#loader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.spinner{
    width:70px;
    height:70px;
    border:6px solid #333;
    border-top:6px solid #FFD700;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}
/* ===========================
   HEADER
=========================== */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    background:rgba(0,0,0,.85);
    z-index:1000;
    box-sizing:border-box;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo{
    display:flex;
    align-items:center;
}
nav ul{
    display:flex;
    gap:30px;
}

nav ul li a{
    color:#fff;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#FFD700;
}

.menu-btn{
    display:none;
    font-size:28px;
    color:#FFD700;
    cursor:pointer;
}

/* ===========================
   HERO SECTION
=========================== */
.hero{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
    padding:0 20px;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.hero-content h1{
    font-size:3.5rem;
    color:#FFD700;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.4rem;
    color:#fff;
    margin-bottom:15px;
}

.hero-content h3{
    color:#fff;
    margin-bottom:15px;
}

.hero-content span{
    display:block;
    color:#ddd;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.hero-buttons a{
    text-decoration:none;
}
.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:16px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    text-align:center;
    transition:.3s;
    cursor:pointer;
}

.btn-primary{
    background:#FFD700;
    color:#000;
}

.btn-primary:hover{
    background:#e6c200;
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #FFD700;
    color:#FFD700;
    background:transparent;
}
.btn-secondary:hover{
    background:#FFD700;
    color:#000;
}
/* ===========================
   COUNTDOWN
=========================== */

.countdown{
    background:#111;
    text-align:center;
}

.countdown h2{
    color:#FFD700;
    margin-bottom:40px;
    font-size:2.2rem;
}

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

.time{
    background:#1b1b1b;
    padding:25px;
    border-radius:15px;
    min-width:130px;
    border:1px solid rgba(255,215,0,.25);
    transition:.3s;
}

.time:hover{
    transform:translateY(-8px);
    border-color:#FFD700;
}

.time span{
    display:block;
    font-size:2.5rem;
    font-weight:700;
    color:#FFD700;
}

.time small{
    color:#ccc;
}

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

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

.about-card{
    background:#141414;
    padding:35px;
    text-align:center;
    border-radius:20px;
    transition:.3s;
    border:1px solid rgba(255,215,0,.15);
}

.about-card:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
}

.about-card i{
    font-size:3rem;
    color:#FFD700;
    margin-bottom:20px;
}

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

.about-card p{
    color:#cfcfcf;
}

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

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

.highlight-item{
    background:#141414;
    padding:30px;
    text-align:center;
    border-radius:18px;
    transition:.3s;
    border:1px solid rgba(255,215,0,.15);
}

.highlight-item:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
}

.highlight-item i{
    font-size:2.8rem;
    color:#FFD700;
    margin-bottom:18px;
}

.highlight-item h3{
    margin-bottom:12px;
}

.highlight-item p{
    color:#ccc;
}
/* ===========================
   EVENT SCHEDULE
=========================== */

.schedule-list{
    display:flex;
    flex-direction:column;
    gap:25px;
    max-width:900px;
    margin:auto;
}

.schedule-item{
    background:#141414;
    padding:25px 30px;
    border-left:5px solid #FFD700;
    border-radius:12px;
    transition:.3s;
}

.schedule-item:hover{
    transform:translateX(8px);
    background:#1b1b1b;
}

.schedule-item span{
    color:#FFD700;
    font-weight:600;
    font-size:1rem;
}

.schedule-item h3{
    margin:10px 0;
    color:#fff;
}

.schedule-item p{
    color:#ccc;
}

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

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

.ticket-card{
    background:#141414;
    border:1px solid rgba(255,215,0,.2);
    border-radius:20px;
    text-align:center;
    padding:40px 30px;
    transition:.3s;
}

.ticket-card:hover{
    transform:translateY(-12px);
    border-color:#FFD700;
}

.ticket-card h3{
    color:#FFD700;
    margin-bottom:20px;
}

.ticket-card h1{
    font-size:3rem;
    margin-bottom:20px;
}

.ticket-card p{
    color:#ccc;
    margin-bottom:30px;
}

.featured{
    background:linear-gradient(135deg,#FFD700,#c89b00);
    color:#000;
}

.featured h3,
.featured h1,
.featured p{
    color:#000;
}

.ticket-btn{
    display:inline-block;
    padding:14px 35px;
    background:#FFD700;
    color:#000;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.ticket-btn:hover{
    transform:scale(1.05);
}

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

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

.dj-card{
    background:#141414;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    border:1px solid rgba(255,215,0,.15);
    transition:.3s;
}

.dj-card:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
}

.dj-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.dj-card h3{
    margin:20px 0 10px;
    color:#FFD700;
}

.dj-card p{
    color:#ccc;
    padding-bottom:25px;
}
/* ===========================
   GALLERY
=========================== */

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

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    cursor:pointer;
}

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

/* ===========================
   TESTIMONIALS
=========================== */

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

.testimonial-card{
    background:#141414;
    padding:30px;
    border-radius:15px;
    border:1px solid rgba(255,215,0,.15);
}

.testimonial-card p{
    color:#ddd;
    margin-bottom:20px;
    font-style:italic;
}

.testimonial-card h4{
    color:#FFD700;
}

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

.faq-item{
    background:#141414;
    padding:25px;
    margin-bottom:20px;
    border-left:4px solid #FFD700;
    border-radius:10px;
}

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

.faq-item p{
    color:#ccc;
}

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

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.contact-info p{
    margin-bottom:15px;
    color:#ddd;
}

.contact-info i{
    color:#FFD700;
    margin-right:10px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    background:#1b1b1b;
    color:#fff;
}

.contact-form button{
    padding:15px 35px;
    background:#FFD700;
    color:#000;
    border:none;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}

/* ===========================
   MAP
=========================== */

.map iframe{
    width:100%;
    height:450px;
    border:0;
}

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

footer{
    background:#050505;
    text-align:center;
    padding:50px 20px;
}

footer h2{
    color:#FFD700;
    margin-bottom:15px;
}

footer p{
    color:#bbb;
}

.socials{
    margin:25px 0;
}

.socials a{
    display:inline-flex;
    width:45px;
    height:45px;
    justify-content:center;
    align-items:center;
    background:#1b1b1b;
    color:#FFD700;
    border-radius:50%;
    margin:0 8px;
    transition:.3s;
}

.socials a:hover{
    background:#FFD700;
    color:#000;
}

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

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#25D366;
    color:#fff;
    font-size:30px;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

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

@media (max-width:768px){

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:1.05rem;
    }
nav{
    position:fixed;
    top:50px;
    right:-100px;
    left:auto;
    width:120px;
    height:calc(60vh - 20px);
    background:#111;
    transition:.35s;
    padding:30px 20px;
    z-index:999;
}

nav.active{
    right:0;
}

nav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
}

nav ul li{
    width:100%;
}
nav ul li a{
    display:block;
    width:100%;
    text-align:right;
    color:#fff;
    font-size:15px;
    padding:12px 15px;
}

.menu-btn{
    display:block;
}
/* ===========================
   BOOKING MODAL
=========================== */

.booking-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.booking-modal.active{
    display:flex;
}

.booking-box{
    width:100%;
    max-width:450px;
    background:#141414;
    border-radius:20px;
    padding:30px;
    position:relative;
    border:2px solid #FFD700;
    animation:popup .3s ease;
}

@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#FFD700;
}

.booking-box h2{
    text-align:center;
    margin-bottom:25px;
    color:#FFD700;
}

.booking-box input,
.booking-box select{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
    background:#1f1f1f;
    color:#fff;
    font-size:16px;
}

.qty-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin:20px 0;
}

.qty-box button{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#FFD700;
    color:#000;
    font-size:22px;
    cursor:pointer;
    font-weight:bold;
}

.qty-box span{
    font-size:22px;
    font-weight:bold;
}

.booking-box h3{
    text-align:center;
    margin:20px 0;
    color:#FFD700;
}

#payBtn{
    width:100%;
}
/* Event Flyer Above Countdown */

.countdown-banner{
    width:100%;
    padding:25px 20px;
    background:#111;
    text-align:center;
}

.countdown-banner img{
    width:100%;
    max-width:700px;
    border-radius:20px;
    display:block;
    margin:auto;
    box-shadow:0 10px 25px rgba(0,0,0,.5);
}