/* ðŸ”¥ GLOBAL */
body{
    margin:0;
    font-family:'Poppins', sans-serif;
}

.vegus-body{
    background:#000;
    color:white;
}

/* ðŸ”¥ LOGO IMAGE */
.nav-logo{
    width:120px;
    height:auto;
    object-fit:contain;
    transition:0.3s;
}

/* optional hover glow */
.nav-logo:hover{
    transform:scale(1.05);
}

/* LOGO */
.logo-container{
    position:fixed;
    top:20px;
    left:30px;
    z-index:1000;
    transition:0.4s ease;
}

.nav-logo{
    width:170px;
    transition:0.3s;
}

/* MENU BUTTON */
.menu-toggle{
    position:fixed;
    top:30px;
    right:30px;
    color:white;
    cursor:pointer;
    z-index:1500;
    display:flex;
    align-items:center;
    gap:8px;
}

/* ===============================
ðŸ”¥ NAVBAR SCROLL HIDE
=============================== */

/* base state */
.logo-container,
.menu-toggle{
    transition: all 0.4s ease;
}

/* hidden state */
.hide-on-scroll{
    opacity:0;
    transform:translateY(-30px);
    pointer-events:none;
}

.menu-text{
    font-size:22px;
}

.menu-icon{
    font-size:26px;
}

/* ðŸ”¥ BACKDROP */
.menu-backdrop{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
    opacity:0;
    visibility:hidden;
    transition:0.4s;
}

.menu-backdrop.show{
    opacity:1;
    visibility:visible;
}

/* ðŸ”¥ SIDEBAR */
.side-menu{
    position:fixed;
    top:0;
    right:0;
    width:340px;
    height:100%;
    background:linear-gradient(180deg,#000,#1a0000,#330000);
    transform:translateX(100%);
    transition:0.4s;
    z-index:2000;
    padding-top:90px;
}

.side-menu.open{
    transform:translateX(0);
}

.close-btn{
    position:absolute;
    top:20px;
    right:25px;
    font-size:28px;
    color:white;
    cursor:pointer;
}

/* ðŸ”¥ LINKS */
.side-links{
    list-style:none;
    padding:0 30px;
}

.side-links li{
    margin:22px 0;
}

.side-links a{
    color:white;
    font-size:22px;
    text-decoration:none;
    position:relative;
    transition:0.3s;
}

/* underline */
.side-links a::before{
    content:"";
    position:absolute;
    bottom:-4px;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,#ff0000,#800000);
    transform:scaleX(0);
    transition:0.3s;
}

.side-links a:hover::before{
    transform:scaleX(1);
}

.side-links a:hover{
    color:#ff1a1a;
}

/* ðŸ”¥ DROPDOWN */
.gallery-submenu{
    max-height:0;
    overflow:hidden;
    transition:0.4s;
    list-style:none;
    padding-left:15px;
}

.gallery-submenu.open{
    max-height:200px;
}

.gallery-submenu a{
    font-size:18px;
    color:#ccc;
}

/* ðŸ”¥ RESERVE BUTTON */
.reserve-wrapper{
    margin-top:40px;
    padding:0 30px;
}

.reserve-btn{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:40px;
    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 0 15px rgba(255,0,0,0.6),
               0 0 30px rgba(128,0,0,0.4);
    position:relative;
    overflow:hidden;
    transition:0.4s;
}

.reserve-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
    transition:0.6s;
}

.reserve-btn:hover::before{
    left:100%;
}

.reserve-btn:hover{
    transform:translateY(-3px) scale(1.05);
}


@media(max-width:768px){

.logo-container{
    top:15px;
    left:20px;
}

.nav-logo{
    width:90px;
}

.menu-toggle{
    top:20px;
    right:20px;
}

}


/* ðŸ”¥ FOOTER */
.footer-section{
    background:linear-gradient(135deg,#000,#1a0000,#330000);
    padding:70px 0 30px;
    color:#ccc;
}

.footer-title{
    color:white;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ff1a1a;
    padding-left:5px;
}

.footer-contact-link{
    color:#ccc;
    text-decoration:none;
}

.footer-contact-link:hover{
    color:#ff1a1a;
}

.social-icons a{
    color:#ccc;
    font-size:20px;
    margin-right:15px;
}

.social-icons a:hover{
    color:#ff1a1a;
}

.footer-divider{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,0.1);
}

.footer-bottom{
    font-size:13px;
}

.footer-logo{
    width:120px;
}

.footer-logo-wrapper{
    padding-left:0;
}

.footer-grid{
    display:flex;
    flex-wrap:wrap;
}

.footer-col{
    width:25%;
}

/* ===============================
ðŸ”¥ OPEN HOURS (FOOTER)
=============================== */

.open-hours{
    margin-top:20px;
}

.hours-title{
    font-size:13px;
    color:#ff1a1a;
    margin-bottom:8px;
    letter-spacing:1px;
}

.hours-text{
    font-size:12px;
    color:#ccc;
    line-height:1.6;
}

.hours-text span{
    color:white;
    font-weight:500;
}

/* ðŸ”¥ MOBILE */
@media(max-width:768px){

.footer-col{
    width:50%;
}

/* spacing */
.footer-col{
    margin-bottom:30px;
}

/* align text nicely */
.footer-section{
    text-align:left;
}

}

/* ðŸ”¥ VEGUS WHATSAPP BUTTON */
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    text-decoration:none;
    z-index:999;

    /* ðŸ”´ YOUR BRAND COLORS */
    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;

    /* âœ¨ GLOW EFFECT */
    box-shadow:0 0 15px rgba(255,0,0,0.6),
               0 0 30px rgba(128,0,0,0.4);

    transition:0.3s ease;
}

/* ðŸ”¥ HOVER EFFECT */
.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px rgba(255,0,0,0.8),
               0 0 40px rgba(128,0,0,0.6);
}
/* ðŸ“± MOBILE */
@media(max-width:768px){

    .whatsapp-float{
        width:50px;
        height:50px;
        font-size:22px;
        bottom:20px;
        right:20px;
    }
    
    }
/* ðŸ”¥ MOBILE */
@media(max-width:768px){

.side-menu{
    width:100%;
}

.logo-text{
    font-size:22px;
}

.menu-text{
    font-size:18px;
}

}

/* ===============================
ðŸŒ¿ HERO VIDEO SECTION
=============================== */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* VIDEO */
.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    min-width:100%;
    min-height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.7)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    color:white;
    max-width:700px;
    padding:0 20px;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
}

/* same identity as navbar */
.hero-title span{
    color:#ff1a1a;
    font-weight:300;
}

.hero-title{
    text-shadow:0 0 15px rgba(255,0,0,0.4);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* PRIMARY */
.btn-hero-primary{
    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 0 15px rgba(255,0,0,0.5);
    transition:0.3s;
}

.btn-hero-primary:hover{
    transform:translateY(-3px);
}

/* OUTLINE */
.btn-hero-outline{
    border:1px solid white;
    color:white;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn-hero-outline:hover{
    background:white;
    color:black;
}

@media(max-width:768px){

.hero{
    height:85vh;
}

/* smaller title */
.hero-title{
    font-size:36px;
}

/* better spacing */
.hero-subtitle{
    font-size:15px;
}

/* stack buttons nicely */
.hero-buttons{
    flex-direction:column;
    gap:12px;
}

/* full width buttons */
.btn-hero-primary,
.btn-hero-outline{
    width:100%;
    text-align:center;
}

}

@media(max-width:768px){

    .hero-title{
        font-size:38px;
        letter-spacing:2px;
    }
    
    .nav-logo{
        width:90px;
    }
    
    }

/* ===============================
ðŸ”¥ ABOUT SECTION
=============================== */

.about-section{
    padding:100px 0;
    background:#000;
    position:relative;
}

/* TEXT */
.about-content{
    padding-right:40px;
}

.about-tag{
    font-size:14px;
    letter-spacing:2px;
    color:#ff1a1a;
    display:block;
    margin-bottom:15px;
}

.about-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.about-title span{
    color:#ff1a1a;
}

.about-text{
    color:#ccc;
    line-height:1.8;
    margin-bottom:15px;
}

/* IMAGE */
.about-image-wrapper{
    position:relative;
}

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.about-image img{
    width:100%;
    height:500px;
    object-fit:cover;
}

/* ðŸ”¥ LEFT FADE (into text) */
.about-image::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:35%;
    height:100%;
    background:linear-gradient(to left, transparent, #000);
    z-index:2;
}

/* ðŸ”¥ RIGHT FADE (into background) */
.about-image::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:25%;
    height:100%;
    background:linear-gradient(to right, transparent, #000);
    z-index:2;
}

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.about-section{
    padding:60px 0;
}

/* stack */
.about-content{
    padding-right:0;
    margin-bottom:30px;
}

.about-image img{
    height:300px;
}

/* remove fades on mobile */
.about-image::before,
.about-image::after{
    display:none;
}

.about-title{
    font-size:28px;
}

.about-text{
    font-size:14px;
}

}

/* ===============================
ðŸ”¥ THEME NIGHTS SECTION
=============================== */

.theme-section{
    padding:30px 0;
    text-align:center;
}

.theme-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.theme-subtitle{
    color:#ccc;
    max-width:600px;
    margin:0 auto 50px;
    line-height:1.7;
}

/* ðŸŽ¬ STAGE */
.theme-stage{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    perspective:1000px;
}

/* CARD */
.theme-card{
    position:relative;
    width:300px;
    height:400px;
    overflow:hidden;
    border-radius:12px;
    transition:0.4s ease;
    cursor:pointer;
}

/* IMAGE */
.theme-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.theme-card img{
    position:relative;
    z-index:1;
}

/* OVERLAY TEXT */
.theme-card-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:25px;

    /* ðŸ”¥ STRONG SMOOTH FADE FROM BOTTOM â†’ UP */
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.85) 30%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.0) 100%
    );

    text-align:left;
    z-index:2;
}

.theme-card-overlay h5{
    color:white;
    font-size:18px;
    text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

/* ACTIVE CENTER */
.theme-card.active{
    transform:scale(1.1);
    z-index:2;
    box-shadow:0 20px 50px rgba(0,0,0,0.8);
}

/* BLUR SIDE */
.theme-card.blurred img{
    filter:blur(3px) brightness(0.6);
}

/* HOVER EFFECT */
.theme-card:hover{
    transform:scale(1.05);
}

/* ðŸ”¥ CTA BUTTON */
.theme-btn{
    display:inline-block;
    padding:12px 30px;
    border-radius:30px;
    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 0 15px rgba(255,0,0,0.5);
    transition:0.3s;
}

.theme-btn:hover{
    transform:translateY(-3px);
}

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.theme-stage{
    flex-direction:column;
}

/* all cards full width */
.theme-card{
    width:100%;
    height:300px;
}

/* remove blur on mobile */
.theme-card img{
    filter:none !important;
}

/* remove scaling */
.theme-card.active{
    transform:none;
}

.theme-title{
    font-size:28px;
}

.theme-subtitle{
    font-size:14px;
}

}

/* ===============================
ðŸ”¥ GALLERY & REVIEWS
=============================== */

.gallery-section{
    padding:100px 0;
    background:#000;
}

.gallery-title{
    font-size:42px;
    font-weight:700;
}

/* CARD */
.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

/* IMAGE */
.gallery-img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

/* LOGO TOP RIGHT */
.gallery-logo{
    position:absolute;
    top:15px;
    right:15px;
    background:rgba(0,0,0,0.6);
    padding:8px 12px;
    border-radius:6px;
}

.gallery-logo img{
    width:80px;
}

/* ðŸ”¥ REVIEW HALF CIRCLE */
.review-circle{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-40%);
    width:320px;
    height:320px;
    background:rgba(0,0,0,0.85);
    border:4px solid white;
    border-radius:50%;
    padding:40px 20px;
    color:white;
    box-shadow:0 10px 40px rgba(0,0,0,0.7);

    display:flex;
    align-items:center;
}

/* INNER FLEX */
.review-inner{
    display:flex;
    width:100%;
    height:100%;
    align-items:center;
}

/* LEFT 30% (QUOTE) */
.review-quote{
    width:30%;
    font-size:70px;
    color:white;
    text-align:center;
    line-height:1;
    opacity:0.9;
}

/* RIGHT 70% */
.review-content{
    width:70%;
    text-align:left;
}

/* NAME */
.review-content h5{
    color:#ff1a1a;
    margin-bottom:8px;
    font-size:17px;
    font-weight: 200;
}
/* make names pop more */
.review-content h5{
    font-size:17px;
    letter-spacing:0.5px;
}

/* TEXT */
.review-content p{
    font-size:14px;
    color:#ccc;
    line-height:1.5;
    font-weight: 200;
}

@media(max-width:768px){

.review-circle{
    position:relative;
    bottom:0;
    left:auto;
    transform:none;

    width:90%;          /* 🔥 wider */
    max-width:320px;    /* keeps it clean */
    height:auto;

    margin: -60px auto 0; /* center it */
    padding:25px 20px;

    border-radius:20px;
}

.review-inner{
    flex-direction:column;
    text-align:center;
}

.review-quote{
    width:100%;
    font-size:40px;
    margin-bottom:5px;
}

.review-content{
    width:100%;
    text-align:center;
}

.review-content p{
    font-size:14px; /* better readability */
}

}

@media(max-width:768px){

.theme-controls{
    position:absolute;
    top:-30px; /* keep them visible above gallery */
    right:10px;
    z-index:10;
}

.theme-controls span{
    font-size:28px;   /* bigger */
    padding:8px 12px;
    background:rgba(0,0,0,0.6);
    border-radius:6px;
}

}

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.gallery-img{
    height:300px;
}

.review-circle{
    position:relative;
    bottom:0;
    left:auto;
    transform:none;

    width:90% !important;          /* 🔥 wider */
    max-width:320px !important;    /* keeps it clean */
    height:auto;

    margin: -60px auto 0; /* center it */
    padding:25px 20px;

    border-radius:20px;
}

/* stack better */
.review-inner{
    flex-direction:column;
    text-align:center;
}

/* quote top */
.review-quote{
    width:100%;
    font-size:40px;
    margin-bottom:5px;
}

/* content full */
.review-content{
    width:100%;
    text-align:center;
}

.gallery-logo img{
    width:60px;
}

.gallery-title{
    font-size:28px;
}

.review-content p{
    font-size:12px;
}

}

/* ===============================
ðŸ”¥ CTA SECTION (FINAL POLISH)
=============================== */

.cta-section{
    padding:140px 0 100px;
    background:#000;
}

/* BOX (TALLER & CLEAN) */
.cta-box{
    position:relative;
    border:4px solid rgba(255,255,255,0.3);
    padding:120px 80px;
    min-height:520px;

    margin-left:120px;

    display:flex;
    align-items:center;
    justify-content:flex-end;
}

/* IMAGE WRAPPER */
.cta-image{
    position:absolute;
    left:-80px;
    top:50%;
    transform:translateY(-50%);
}

/* IMAGE */
.cta-image img{
    height:460px;
    width:auto;
    object-fit:contain;
    display:block;

    /* ðŸ”¥ FADE ALL EDGES */
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

/* CONTENT */
.cta-content{
    max-width:520px;
    z-index:2;
}

/* TITLE */
.cta-content h2{
    font-size:50px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-content span{
    color:#ff1a1a;
}

/* TEXT */
.cta-content p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:30px;
}

/* BUTTON */
.cta-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:30px;
    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 0 15px rgba(255,0,0,0.5);
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-3px) scale(1.03);
}

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.cta-box{
    margin-left:0;
    padding:60px 20px;
    text-align:center;
    min-height:auto;
}

/* hide image for clean mobile */
.cta-image{
    display:none;
}

.cta-content h2{
    font-size:28px;
}

.cta-content p{
    font-size:14px;
}

}

/* ===============================
ðŸ”¥ HARD FIX FOOTER GAP
=============================== */

html, body{
    margin:0;
    padding:0;
}

.gallery-section .row{
    overflow:hidden;
}

.footer-section{
    margin-bottom:-220px;
}

/* ===============================
ðŸ”¥ MOMENTS (TIKTOK STYLE)
=============================== */

.moments-section{
    padding:20px 0;
    background:#000;
}

.footer-section{
    margin-top:120px; /* controls space above footer */
}

/* TITLE */
.moments-title{
    font-size:42px;
    font-weight:700;
}

/* WRAPPER */
.moments-wrapper{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

/* CARD (VERTICAL 9:16) */
.moment-card{
    width:260px;
    height:460px;
    border-radius:16px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,0.7);
    cursor:pointer;
    transition:0.4s;
}

/* VIDEO */
.moment-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* HOVER EFFECT */
.moment-card:hover{
    transform:scale(1.05);
}

/* BUTTON */
.moments-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:30px;
    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 0 15px rgba(255,0,0,0.5);
    transition:0.3s;
}

.moments-btn:hover{
    transform:translateY(-3px);
}

.moments-wrapper{
    overflow:hidden;
}

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.moments-section{
    padding:20px 0 !important;
    background:#000;
}

.moments-title{
    font-size:28px;
}

.moment-card{
    width:100%;
    max-width:300px;
    height:520px;
}

}

/* ===============================
ðŸ”¥ ABOUT PAGE
=============================== */

.about-page{
    position:relative;
    padding:120px 0;
    background:#000;
    overflow:hidden;
}

/* ðŸŽ¬ VIDEO */
.about-bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(8px) brightness(0.4);
    z-index:0;
}

/* DARK OVERLAY */
.about-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:1;
}

/* CONTENT ABOVE */
.about-page .container{
    position:relative;
    z-index:2;
}

/* INTRO */
.about-intro{
    max-width:700px;
    margin:0 auto 80px;
}

.about-intro h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.about-intro p{
    color:#ccc;
    line-height:1.7;
}

/* BLOCKS */
.about-block{
    margin-bottom:100px;
}

.about-block img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:12px;
}

.about-block h3{
    font-size:28px;
    margin-bottom:15px;
    color:#ff1a1a;
}

.about-block p{
    color:#ccc;
    line-height:1.7;
}

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.about-page{
    padding-top:180px; /* ðŸ”¥ push content lower */
}

.about-intro h1{
    font-size:28px;
}

.about-block{
    margin-bottom:60px;
}

.about-block img{
    height:250px;
}

.about-block h3{
    font-size:22px;
}

.about-block p{
    font-size:14px;
}

}

.theme-page{
    position:relative;
    padding:120px 0;
    color:white;
}

/* VIDEO */
.theme-bg-video{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(8px) brightness(0.4);
    z-index:-2;
}

.theme-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.3);
    z-index:-1;
}

/* BOX */
.section-box{
    max-width:1200px;
    margin:0 auto; /* remove spacing between sections */
    background:#000;
    padding:80px;
    border-radius:0; /* remove rounded edges so they connect */
}

/* INTRO */
.theme-intro{
    max-width:700px;
    margin:0 auto 80px;
}

.theme-intro{
    margin:0 auto 80px;
}

.theme-features{
    margin-bottom:120px; /* keep bottom breathing */
}

.theme-intro h1{
    font-size:48px;
}

/* EXPERIENCE */
.experience-title{
    margin-bottom:40px;
    text-align:center;
}

.theme-gallery{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.theme-gallery img{
    height:300px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.theme-gallery img:hover{
    transform:scale(1.05);
}

.theme-controls{
    text-align:right;
    margin-bottom:20px;
}

.theme-controls span{
    cursor:pointer;
    font-size:30px;
    margin-left:15px;
    color:#ff1a1a;
}

/* SCHEDULE */
.theme-schedule ul{
    list-style:none;
    padding:0;
}

.theme-schedule li{
    margin-bottom:10px;
    color:#ccc;
}

/* FEATURES */
.feature-grid{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.feature-box{
    flex:1;
}

.feature-box img{
    width:100%;
    height:200px;
    object-fit:cover;
    margin-bottom:15px;
}
.theme-gallery{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;

    /* hide scrollbar */
    scrollbar-width:none; /* Firefox */
}

.theme-gallery::-webkit-scrollbar{
    display:none; /* Chrome/Safari */
}

/* IMAGE VIEWER */
.image-viewer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.image-viewer img{
    max-width:80%;
    max-height:80%;
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    cursor:pointer;
}

.nav{
    position:absolute;
    top:50%;
    font-size:50px;
    cursor:pointer;
    padding:20px;
    color:#ff1a1a;
}

.prev{ left:30px; }
.next{ right:30px; }

/* MOBILE */
@media(max-width:768px){

.theme-gallery img{
    height:200px;
}

.feature-grid{
    flex-direction:column;
}

}

@media(max-width:768px){

.theme-page{
    padding-top:160px; /* pushes everything below navbar */
}

}

/* ===============================
ðŸ”¥ GALLERY PAGE
=============================== */

.gallery-page{
    position:relative;
    padding:140px 0;
    color:white;
}

/* VIDEO */
.gallery-bg-video{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(8px) brightness(0.4);
    z-index:-2;
}

/* OVERLAY */
.gallery-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    z-index:-1;
}

/* INTRO */
.gallery-intro{
    max-width:700px;
    margin:0 auto 80px;
}

.gallery-intro h1{
    font-size:48px;
    margin-bottom:15px;
}

.gallery-intro p{
    color:#ccc;
    line-height:1.7;
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* IMAGES */
.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/* VIEWER */
.image-viewer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.image-viewer img{
    max-width:85%;
    max-height:85%;
    border-radius:10px;
}

/* CLOSE */
.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    cursor:pointer;
}

/* NAV */
.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:50px;
    cursor:pointer;
    padding:20px;
    color:#ff1a1a;
}

.prev{ left:30px; }
.next{ right:30px; }

/* ===============================
ðŸ“± MOBILE
=============================== */

@media(max-width:768px){

.gallery-page{
    padding-top:160px;
}

/* 2 per row */
.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.gallery-grid img{
    height:200px;
}

.gallery-intro h1{
    font-size:28px;
}

.gallery-intro p{
    font-size:14px;
}

.image-viewer img{
    max-width:95%;
    max-height:70%;
}

}

@media(max-width:768px){

.nav{
    display:block !important;
    font-size:35px;
    padding:10px;
    z-index:10000;
    color:#ff1a1a;
}

.prev{ left:10px; }
.next{ right:10px; }

}

/* ===============================
ðŸ”¥ CONTACT HERO
=============================== */
.contact-hero{
    height:50vh;
    background:url("../images/cta24.0719bff13cfd.jpeg") center/cover no-repeat;
    position:relative;
}

.contact-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-hero h1{
    color:white;
    font-size:48px;
    text-transform:uppercase;
    letter-spacing:2px;
}

/* ===============================
ðŸ”¥ CONTACT SECTION
=============================== */
.contact-section{
    padding:100px 0;
}

/* CARD */
.contact-card{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:40px;
    border-radius:16px;

    background:linear-gradient(
        to bottom,
        rgba(30,30,30,0.9),
        rgba(10,10,10,0.9)
    );

    backdrop-filter:blur(6px);

    box-shadow:0 10px 40px rgba(0,0,0,0.7);
    border:1px solid rgba(255,0,0,0.2);
}

/* TITLE */
.contact-title{
    color:#ff1a1a;
    margin-bottom:25px;
}

/* TEXT */
.contact-card p{
    color:#ccc;
    margin-bottom:15px;
    line-height:1.6;
}

/* ICON */
.contact-card i{
    color:#ff1a1a;
    margin-right:10px;
}

/* LINKS */
.contact-link{
    color:#ccc;
    text-decoration:none;
}

.contact-link:hover{
    color:#ff1a1a;
}

/* DIVIDER */
.contact-divider{
    margin:25px 0;
    border-color:rgba(255,255,255,0.1);
}

/* ===============================
ðŸ”¥ MAP BUTTON
=============================== */
.contact-map-btn-wrapper{
    margin-top:auto;
}

.contact-map-btn{
    display:block;
    text-align:center;
    padding:15px;

    background:linear-gradient(135deg,#ff0000,#800000);
    color:white;
    font-weight:600;
    text-decoration:none;

    border-radius:30px;

    box-shadow:0 0 15px rgba(255,0,0,0.5);
    transition:0.3s;
}

.contact-map-btn:hover{
    transform:translateY(-3px);
}

/* ===============================
ðŸ”¥ MAP
=============================== */
.map-box{
    height:100%;
    min-height:450px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.7);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* ===============================
ðŸ“± MOBILE
=============================== */
@media(max-width:768px){

.contact-hero{
    height:40vh;
}

.contact-hero h1{
    font-size:28px;
}

.contact-section{
    padding-top:160px; /* avoid navbar overlap */
}

.contact-card{
    text-align:center;
    padding:30px;
}

.map-box{
    min-height:300px;
}

}