/* ===================================================
   SISTERS PLACE CARIBBEAN FOOD
   STYLE.CSS
=================================================== */

:root{
    --green:#1a1a1a;
    --gold:#F4C542;
    --gold-light:#e8b338;
    --gold-dark:#d4a830;
    --cream:#0d0d0d;
    --dark:#0a0a0a;
    --white:#ffffff;

    --shadow:0 15px 35px rgba(0,0,0,.15);
    --shadow-hover:0 20px 45px rgba(0,0,0,.25);
    --shadow-gold:0 25px 80px rgba(244,197,66,0.25);

    --radius:18px;
    --radius-large:32px;

    --transition:.35s ease;
    --transition-smooth:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
    color:var(--white);
    line-height:1.7;
    overflow-x:hidden;
    color-scheme: dark;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

.section{
    padding:100px 0;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

h2{
    text-align:center;
    margin-bottom:60px;
    color:var(--white);
    font-size:2.8rem;
}

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

header{
    position:fixed;
    width:100%;
    z-index:1000;
}

.navbar{

    width:100%;

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

    padding:15px 30px;

    transition:.4s;

}

.navbar.scrolled .nav-links{

    background:rgba(26,26,26,.95);
    padding:15px 30px;
    border-radius:40px;
    box-shadow:var(--shadow);

}

.navbar.scrolled .logo{

    background:rgba(26,26,26,.95);
    padding:15px 30px;
    border-radius:40px;
    box-shadow:var(--shadow);

}

.logo{

display:flex;
align-items:center;

}

.logo img{

height:90px;
width:auto;
object-fit:contain;

}

.nav-links{

display:flex;
gap:35px;
background:transparent;

}

.nav-links a{

color:white;
font-weight:500;
position:relative;

}

.nav-links a::after{

content:'';

position:absolute;

left:0;
bottom:-6px;

height:2px;
width:0;

background:var(--gold);

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}

.menu-btn{

padding:12px 28px;

border-radius:40px;

background:var(--gold);

color:var(--green);

font-weight:600;

transition:.3s;

box-shadow:var(--shadow);

}

.menu-btn:hover{

transform:translateY(-3px);

box-shadow:var(--shadow-hover);

}

.hamburger{

display:none;

flex-direction:column;

cursor:pointer;

gap:6px;

}

.hamburger span{

width:28px;

height:3px;

background:white;

border-radius:5px;

}

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

.hero{

height:100vh;

position:relative;

display:flex;

justify-content:center;

align-items:center;

background:

url("Images/Sisters_Place_Carribean_Food_02.png")

center/cover fixed;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

135deg,

rgba(0,0,0,.75),

rgba(26,26,26,.65)

);

}

.hero-content{

position:relative;

z-index:5;

max-width:850px;

text-align:center;

color:white;

padding:20px;

animation:fadeUp 1.2s ease;

}

.hero-logo{

max-width:45%;
height:auto;
margin:80px auto 2px auto;
display:block;

}

.hero h1{

font-size:4rem;

margin-bottom:25px;

color:white;

}

.hero p{

font-size:1.2rem;

margin-bottom:20px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* ======================================
BUTTONS
====================================== */

.btn{

padding:16px 35px;

border-radius:40px;

font-weight:600;

transition:.35s;

position:relative;

overflow:hidden;

}

.btn.gold{

background:var(--green);

color:white;

}

.btn.transparent{

border:2px solid white;

color:white;

}

.btn:hover{

transform:translateY(-5px);

box-shadow:var(--shadow-hover);

}

.btn::before{

content:"";

position:absolute;

width:0;

height:0;

border-radius:50%;

background:rgba(255,255,255,.4);

top:50%;
left:50%;

transform:translate(-50%,-50%);

transition:.6s;

}

.btn:hover::before{

width:320px;

height:320px;

}

/* ======================================
SCROLL INDICATOR
====================================== */

.scroll-indicator{

position:absolute;

bottom:10px;

left:50%;

transform:translateX(-50%);

color:white;

font-size:2rem;

animation:bounce 2s infinite;

z-index:10;

}

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

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Scroll reveal */

.reveal{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:none;

}

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

.about{
    background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.about-image img:hover{
    transform:scale(1.03);
    box-shadow:var(--shadow-hover);
}

.about-text h2{
    text-align:left;
    margin-bottom:25px;
}

.about-text p{
    color:#aaa;
    margin-bottom:35px;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.features div{
    background:rgba(26,26,26,.7);
    backdrop-filter:blur(12px);
    border:1px solid rgba(244,197,66,.3);
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.features div:hover{
    transform:translateY(-8px);
}

.features span{
    font-size:2rem;
    display:block;
    margin-bottom:12px;
}

.features p{
    margin:0;
    font-weight:600;
    color:var(--white);
}

/* ===================================================
   MENU
=================================================== */

.menu{
    background:linear-gradient(to bottom,#1a1a1a,#0d0d0d);
}

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

.card{
    background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid rgba(244,197,66,0.2);
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:var(--shadow-hover);
}

.card img{
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.card:hover img{
    transform:scale(1.08);
}

.card-content{
    padding:25px;
}

.card-content h3{
    color:var(--white);
    margin-bottom:10px;
}

.card-content p{
    color:#aaa;
    margin-bottom:18px;
}

.card-content span{
    display:inline-block;
    font-size:1.1rem;
    font-weight:700;
    color:var(--gold);
}

.center{
    text-align:center;
    margin-top:60px;
}

.large{
    font-size:1rem;
    padding:18px 40px;
}

/* ===================================================
   WHY CHOOSE US
=================================================== */

.why{
    background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

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

.why-card{
    background:rgba(26,26,26,.7);
    backdrop-filter:blur(15px);
    border:1px solid rgba(244,197,66,.3);
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-hover);
}

.why-card i{
    font-size:3rem;
    color:var(--gold);
    margin-bottom:20px;
}

.why-card h3{
    color:var(--white);
}

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

.contact{
    background:linear-gradient(180deg,#1a1a1a,#0d0d0d);
}

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

.contact-card{
    background:transparent;
    backdrop-filter:none;
    border:none;
    border-radius:0;
    padding:20px 10px;
    text-align:center;
    box-shadow:none;
    transition:none;
}

.contact-card:hover{
    transform:none;
}

.contact-card i{
    font-size:2.5rem;
    color:var(--gold);
    margin-bottom:15px;
}

.contact-card h3{
    color:var(--white);
    margin-bottom:12px;
}

.contact-card p{
    color:#aaa;
    line-height:1.8;
}

/* ===================================================
   SOCIAL MEDIA
=================================================== */

.social{
    display:flex;
    justify-content:center;
    gap:25px;
    padding:70px 20px;
    background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

.social a{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
    color:white;
    background:var(--green);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.social a:hover{
    background:var(--gold);
    color:var(--green);
    transform:translateY(-8px) rotate(8deg) scale(1.08);
    box-shadow:var(--shadow-hover);
}

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

footer{
    background:linear-gradient(145deg, #0a0a0a, #050505);
    color:white;
    text-align:center;
    padding:40px 20px;
}

footer p{
    opacity:.9;
    line-height:2;
}

footer a{
    color:var(--gold);
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:var(--gold-light);
    text-decoration:underline;
}

/* ===================================================
   BACK TO TOP
=================================================== */

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:var(--green);
    font-size:1.2rem;
    cursor:pointer;
    box-shadow:var(--shadow);
    display:none;
    transition:var(--transition);
    z-index:999;
}

#topBtn:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:var(--shadow-hover);
}

#topBtn.show{
    display:flex;
    justify-content:center;
    align-items:center;
    animation:fadeUp .4s ease;
}

/* ===================================================
   EXTRA GLASS EFFECTS
=================================================== */

.card,
.why-card,
.features div{
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(16px);
}

.card::after,
.why-card::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    border-radius:22px;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.18),
        transparent 55%
    );
    opacity:0;
    transition:.4s;
}

.card,
.why-card{
    position:relative;
}

.card:hover::after,
.why-card:hover::after{
    opacity:1;
}

/* ===================================================
   IMAGE EFFECTS
=================================================== */

.about-image{
    overflow:hidden;
    border-radius:var(--radius);
}

.about-image img{
    transition:.6s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

.card{
    overflow:hidden;
}

.card img{
    transition:transform .6s ease;
}

/* ===================================================
   SECTION TITLES
=================================================== */

.section h2{
    position:relative;
}

.section h2::after{

    content:"";

    width:90px;
    height:4px;

    background:var(--gold);

    display:block;

    margin:18px auto 0;

    border-radius:20px;

}

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

@media (max-width:900px){

.nav-links{

position:absolute;

top:90px;
left:5%;

width:90%;

background:rgba(26,26,26,.96);

backdrop-filter:blur(18px);

border-radius:20px;

padding:30px;

display:flex;
flex-direction:column;

gap:25px;

text-align:center;

transform:translateY(-30px);

opacity:0;

visibility:hidden;

transition:.35s;

}

.nav-links.active{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.menu-btn{

display:none;

}

.hamburger{

display:flex;

}

.hero h1{

font-size:3rem;

}

}

/* ===================================================
   TABLET
=================================================== */

@media (max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-text{

text-align:center;

}

.about-text h2{

text-align:center;

}

.features{

grid-template-columns:1fr;

}

}

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

@media (max-width:768px){

.section{

padding:80px 0;

}

.hero{

background-attachment:scroll;

}

.hero h1{

font-size:2.4rem;

line-height:1.2;

}

.hero p{

font-size:1rem;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn{

width:100%;
max-width:300px;

text-align:center;

}

.cards{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.social{

flex-wrap:wrap;

gap:18px;

}

.social a{

width:60px;
height:60px;

font-size:1.5rem;

}

.logo h2{

font-size:1rem;

}

.logo span{

font-size:.7rem;

}

}

/* ===================================================
   SMALL PHONES
=================================================== */

@media (max-width:480px){

.navbar{

padding:15px 18px;

}

.hero h1{

font-size:2rem;

}

.hero p{

font-size:.95rem;

}

h2{

font-size:2rem;

}

.card-content{

padding:20px;

}

.contact-card{

padding:15px 10px;

}

.features div{

padding:18px;

}

}

/* ===================================================
   SCROLLBAR
=================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:rgba(26,26,26,.5);

}

::-webkit-scrollbar-thumb{

background:linear-gradient(180deg, #F4C542, #e8b338);
border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:linear-gradient(180deg, #e8b338, #d4a830);
}

/* ===================================================
   SELECTION
=================================================== */

::selection{

background:var(--gold);

color:var(--green);

}

/* ===================================================
   FOCUS ACCESSIBILITY
=================================================== */

a:focus,
button:focus{

outline:3px solid var(--gold);
outline-offset:4px;

}

/* ===================================================
   SMOOTH FADE HELPERS
=================================================== */

.fade-in{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-in.visible{
    opacity:1;
    transform:translateY(0);
}

/* ===================================================
   RIPPLE EFFECT SUPPORT
=================================================== */

.btn{
    isolation:isolate;
}

.btn span.ripple{
    position:absolute;
    border-radius:50%;
    transform:scale(0);
    animation:ripple .6s linear;
    background:rgba(255,255,255,.45);
    pointer-events:none;
}

@keyframes ripple{

to{

transform:scale(5);

opacity:0;

}

}

/* ===================================================
   LOADING TRANSITIONS
=================================================== */

img{
    transition:opacity .4s ease;
}

img[loading="lazy"]{
    opacity:.98;
}

/* ===================================================
   PREMIUM FINISH
=================================================== */

.hero-content,
.about-text,
.card,
.why-card{
    will-change:transform;
}

html{
    scroll-padding-top:100px;
}

/* ===================================================
   MENU MODAL - MODERN 2026 DESIGN
=================================================== */

.modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:2000;
    background:linear-gradient(135deg, rgba(244,197,66,0.15), rgba(255,248,240,0.85));
    backdrop-filter:blur(20px);
    animation:modalFadeIn .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.modal-content{
    background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius:16px;
    max-width:650px;
    width:100%;
    max-height:85vh;
    overflow-y:auto;
    overflow-x:hidden;
    box-shadow:0 25px 80px rgba(244,197,66,0.25), 0 10px 30px rgba(0,0,0,0.5);
    animation:modalSlideUp .5s cubic-bezier(0.4, 0, 0.2, 1);
    border:1px solid rgba(244,197,66,0.3);
}

.modal-header{
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    padding:15px 15px;
    background:url("Images/menu_header_sisters_place_caribbean_food_broodjes_hoensbroek.png") center top/contain no-repeat;
    border-radius:16px 16px 0 0;
    position:sticky;
    top:0;
    z-index:10;
    min-height:250px;
}

.modal-header h2{
    color:white;
    margin:0;
    font-size:1.9rem;
    font-weight:700;
    letter-spacing:-0.5px;
    text-shadow:0 2px 10px rgba(0,0,0,0.5);
}

.modal-categories{
    display:flex;
    gap:12px;
    padding:20px 35px;
    background:transparent;
    border-bottom:1px solid rgba(244,197,66,0.2);
    flex-wrap:wrap;
    position:sticky;
    top:0;
    z-index:9;
}

.category-btn{
    padding:12px 24px;
    border:2px solid rgba(244,197,66,0.4);
    background:transparent;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    font-size:0.9rem;
    cursor:pointer;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family:'Poppins',sans-serif;
    backdrop-filter:blur(10px);
}

.category-btn:hover{
    background:linear-gradient(135deg, #F4C542, #e8b338);
    color:#1a1a1a;
    border-color:transparent;
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 8px 25px rgba(244,197,66,0.4);
}

.category-btn.active{
    background:linear-gradient(135deg, #F4C542, #e8b338);
    color:#1a1a1a;
    border-color:transparent;
    box-shadow:0 8px 25px rgba(244,197,66,0.4);
    transform:scale(1.05);
}

.close-btn{
    background:rgba(0,0,0,0.6);
    border:2px solid rgba(255,255,255,0.6);
    color:white;
    font-size:1.2rem;
    cursor:pointer;
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter:blur(10px);
}

.close-btn:hover{
    background:rgba(0,0,0,0.8);
    border-color:white;
    transform:rotate(90deg) scale(1.1);
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

.modal-body{
    padding:35px;
    background:transparent;
}

.menu-category{
    margin-bottom:35px;
    animation:categoryFadeIn 0.5s ease forwards;
    opacity:0;
}

.menu-category:nth-child(1){ animation-delay: 0.1s; }
.menu-category:nth-child(2){ animation-delay: 0.2s; }
.menu-category:nth-child(3){ animation-delay: 0.3s; }
.menu-category:nth-child(4){ animation-delay: 0.4s; }
.menu-category:nth-child(5){ animation-delay: 0.5s; }
.menu-category:nth-child(6){ animation-delay: 0.6s; }

.menu-category:last-child{
    margin-bottom:0;
}

.menu-category h3{
    color:#fff;
    font-size:1.5rem;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:3px solid rgba(244,197,66,0.3);
    font-weight:700;
    letter-spacing:-0.3px;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius:16px;
    margin-bottom:8px;
}

.menu-item:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.menu-item:hover{
    background:linear-gradient(135deg, rgba(244,197,66,0.12), rgba(244,197,66,0.05));
    padding-left:25px;
    transform:translateX(5px);
    box-shadow:0 4px 15px rgba(244,197,66,0.15);
}

.item-info h4{
    color:#fff;
    font-size:1.15rem;
    margin-bottom:6px;
    font-weight:600;
    letter-spacing:-0.2px;
}

.item-info p{
    color:#aaa;
    font-size:0.9rem;
    margin:0;
    line-height:1.4;
}

.item-price{
    font-weight:700;
    color:#d4a830;
    font-size:1.2rem;
    min-width:90px;
    text-align:right;
    background:linear-gradient(135deg, #F4C542, #e8b338);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.menu-note{
    color:#aaa;
    font-size:0.85rem;
    font-style:italic;
    margin:18px 0 8px 0;
    padding:14px 18px;
    background:linear-gradient(135deg, rgba(244,197,66,0.15), rgba(244,197,66,0.08));
    border-left:4px solid #F4C542;
    border-radius:12px;
    line-height:1.5;
}

.menu-footer{
    margin-top:35px;
    padding-top:25px;
    border-top:2px solid rgba(244,197,66,0.3);
    text-align:center;
}

.menu-footer p{
    color:#aaa;
    font-size:0.85rem;
    margin:8px 0;
    line-height:1.5;
}

@keyframes modalFadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes modalSlideUp{
    from{
        opacity:0;
        transform:translateY(60px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes categoryFadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Modern Modal scrollbar */
.modal-content::-webkit-scrollbar{
    width:6px;
}

.modal-content::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.05);
    border-radius:10px;
    margin:8px 0;
}

.modal-content::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg, #F4C542, #e8b338);
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background-clip:padding-box;
    transition:all 0.3s ease;
    min-height:20px;
    margin:4px 0;
}

.modal-content::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg, #e8b338, #d4a830);
    background-clip:padding-box;
    border-color:rgba(255,255,255,0.2);
}

.modal-content::-webkit-scrollbar-corner{
    background:transparent;
}

/* Mobile modal - Modern 2026 */
@media (max-width:768px){
    .modal.active{
        padding:15px;
    }
    
    .modal-content{
        max-height:90vh;
        border-radius:12px;
        background:linear-gradient(145deg, #1a1a1a, #0d0d0d);
    }
    
    .modal-header{
        padding:12px 12px;
        border-radius:12px 12px 0 0;
        min-height:200px;
    }
    
    .modal-categories{
        padding:18px 25px;
        gap:10px;
        background:transparent;
        border-bottom:1px solid rgba(244,197,66,0.2);
    }
    
    .category-btn{
        padding:10px 18px;
        font-size:0.85rem;
        color:#fff;
    }
    
    .modal-body{
        padding:25px;
        background:transparent;
    }
    
    .menu-item{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
        padding:15px;
    }
    
    .menu-item:hover{
        padding-left:18px;
        transform:translateX(3px);
    }
    
    .item-info h4{
        color:#fff;
    }
    
    .item-info p{
        color:#aaa;
    }
    
    .item-price{
        text-align:left;
        font-size:1.1rem;
    }
    
    .menu-note{
        color:#aaa;
        background:linear-gradient(135deg, rgba(244,197,66,0.15), rgba(244,197,66,0.08));
    }
    
    .menu-footer p{
        color:#aaa;
    }
    
    .close-btn{
        width:32px;
        height:32px;
        font-size:1rem;
        background:rgba(0,0,0,0.6);
        border:2px solid rgba(255,255,255,0.6);
        color:white;
    }
    
    .close-btn:hover{
        background:rgba(0,0,0,0.8);
        border-color:white;
    }
}

/* ===================================================
   FORCE DARK MODE
=================================================== */

@media (prefers-color-scheme: light) {
    :root {
        --green: #1a1a1a;
        --gold: #F4C542;
        --cream: #0d0d0d;
        --dark: #0a0a0a;
        --white: #ffffff;
    }

    body {
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
        color: var(--white);
    }

    .navbar {
        background: transparent;
    }

    .navbar.scrolled .nav-links {
        background: rgba(26, 26, 26, 0.95);
    }

    .navbar.scrolled .logo {
        background: rgba(26, 26, 26, 0.95);
    }

    .nav-links {
        background: transparent;
    }

    .nav-links a {
        color: white;
    }

    .hero-content {
        color: white;
    }

    .btn.gold {
        background: var(--green);
        color: white;
    }

    .btn.transparent {
        border-color: white;
        color: white;
    }

    footer {
        background: linear-gradient(145deg, #0a0a0a, #050505);
        color: white;
    }

    .about,
    .why,
    .menu,
    .contact,
    .social {
        background: inherit;
    }
}