/* =========================
   MAISON VERTE -
   Global + Navbar + Hero + Order Panel
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Roboto', sans-serif;
}

:root{
    --green:#0f3d2e;
    --green-dark:#061f18;
    --green-soft:#e9f3ee;
    --green-light:#1f6b50;
    --gold:#d6b56d;
    --cream:#fff8ef;
    --white:#ffffff;
    --black:#111111;
    --gray:#777777;
    --text:#24342f;
    --shadow:0 25px 70px rgba(15,61,46,.18);
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    color:var(--text);
    overflow-x:hidden;
}

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

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.navbar{
    width:100%;
    padding:18px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(6,31,24,.72);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(214,181,109,.22);
}

.logo{
    text-decoration:none;
    color:var(--white);
    font-size:23px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:9px;
}

.logo i{
    color:var(--gold);
}

.logo span{
    color:var(--gold);
    font-weight:400;
}

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

.nav-links a{
    text-decoration:none;
    color:#f1f1f1;
    font-size:14px;
    font-weight:500;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.35s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-order-btn{
    border:none;
    background:linear-gradient(135deg,var(--gold),#f1d58a);
    color:var(--green-dark);
    padding:12px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 14px 35px rgba(214,181,109,.28);
    transition:.35s ease;
}

.nav-order-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(214,181,109,.38);
}

.menu-toggle{
    display:none;
    color:var(--white);
    font-size:22px;
    cursor:pointer;
}

.mobile-order{
    display:none;
}

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

.hero{
    min-height:100vh;
    padding:135px 7% 80px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:60px;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(214,181,109,.25), transparent 34%),
        radial-gradient(circle at bottom right, rgba(31,107,80,.28), transparent 36%),
        linear-gradient(135deg, #062119, #0f3d2e 58%, #041611);
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(6px);
    opacity:.45;
    z-index:0;
}

.shape-one{
    width:260px;
    height:260px;
    background:var(--gold);
    right:9%;
    top:120px;
}

.shape-two{
    width:180px;
    height:180px;
    background:var(--green-light);
    left:7%;
    bottom:90px;
}

.hero-content,
.hero-visual{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 16px;
    border-radius:40px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(214,181,109,.28);
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.hero h1{
    color:var(--white);
    font-size:clamp(36px,5vw,66px);
    line-height:1.04;
    letter-spacing:-1px;
    max-width:760px;
    margin-bottom:22px;
}

.hero p{
    color:#e6eee9;
    max-width:640px;
    font-size:16px;
    line-height:1.8;
    margin-bottom:32px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:36px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    border:none;
    padding:14px 24px;
    border-radius:40px;
    font-size:14px;
    font-weight:800;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.35s ease;
}

.btn-primary{
    background:linear-gradient(135deg,var(--gold),#f1d58a);
    color:var(--green-dark);
    box-shadow:0 18px 45px rgba(214,181,109,.25);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 25px 60px rgba(214,181,109,.35);
}

.btn-secondary{
    background:rgba(255,255,255,.08);
    color:var(--white);
    border:1px solid rgba(214,181,109,.28);
}

.btn-secondary:hover{
    background:rgba(214,181,109,.15);
    transform:translateY(-3px);
}

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

.hero-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-stats div{
    min-width:140px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(214,181,109,.22);
    border-radius:18px;
    padding:15px 18px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-stats strong{
    display:block;
    color:var(--gold);
    font-size:21px;
    margin-bottom:3px;
}

.hero-stats span{
    color:#e7eee9;
    font-size:12px;
}

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

.hero-visual{
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image{
    position:relative;
    width:min(430px,100%);
    height:560px;
    border-radius:42px;
    overflow:hidden;
    border:10px solid rgba(214,181,109,.25);
    box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.45),transparent 55%);
}

.floating-food-card{
    position:absolute;
    background:rgba(6,31,24,.86);
    backdrop-filter:blur(14px);
    border:1px solid rgba(214,181,109,.28);
    border-radius:24px;
    padding:16px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--white);
    box-shadow:0 25px 60px rgba(0,0,0,.28);
    animation:floatCard 4s ease-in-out infinite;
}

.floating-food-card i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),#f1d58a);
    color:var(--green-dark);
    display:flex;
    align-items:center;
    justify-content:center;
}

.floating-food-card strong{
    display:block;
    font-size:14px;
}

.floating-food-card span{
    color:#e6eee9;
    font-size:12px;
}

.card-top{
    top:75px;
    left:0;
}

.card-bottom{
    right:0;
    bottom:90px;
    animation-delay:1.2s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* =========================
   ORDER PANEL
========================= */

.order-panel{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:3000;
    padding:20px;
}

.order-panel.active{
    display:flex;
}

.order-box{
    width:100%;
    max-width:520px;
    max-height:90vh;
    overflow-y:auto;
    background:var(--cream);
    border-radius:28px;
    padding:32px;
    position:relative;
    box-shadow:0 35px 90px rgba(0,0,0,.35);
    border:1px solid rgba(214,181,109,.35);
}

.close-order{
    position:absolute;
    top:18px;
    right:20px;
    cursor:pointer;
    color:var(--green-dark);
    font-size:18px;
}

.order-box h3{
    font-size:26px;
    color:var(--green-dark);
    margin-bottom:20px;
}

.order-items{
    display:grid;
    gap:12px;
    margin-bottom:18px;
}

.empty-order{
    color:var(--gray);
    font-size:14px;
}

.order-item{
    background:var(--white);
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(15,61,46,.12);
}

.order-item strong{
    display:block;
    color:var(--green-dark);
    margin-bottom:4px;
}

.order-item span{
    font-size:13px;
    color:var(--gray);
}

.order-total{
    padding:16px;
    background:var(--green-dark);
    color:var(--white);
    border-radius:18px;
    margin-bottom:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.customer-form{
    display:grid;
    gap:12px;
}

.customer-form input,
.customer-form textarea{
    width:100%;
    border:1px solid rgba(15,61,46,.18);
    border-radius:16px;
    padding:13px 15px;
    outline:none;
    font-size:14px;
    background:var(--white);
}

.customer-form textarea{
    min-height:90px;
    resize:none;
}

.confirm-order{
    width:100%;
    margin-top:16px;
    border:none;
    background:#25D366;
    color:var(--white);
    padding:14px 20px;
    border-radius:40px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.35s ease;
}

.confirm-order:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,211,102,.28);
}

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

@media(max-width:980px){

    .desktop-order{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .mobile-order{
        display:block;
        width:100%;
    }

    .mobile-order .nav-order-btn{
        width:100%;
        justify-content:center;
        margin-top:8px;
    }

    .nav-links{
        position:absolute;
        top:74px;
        right:7%;
        width:270px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
        background:rgba(6,31,24,.96);
        border:1px solid rgba(214,181,109,.25);
        border-radius:24px;
        padding:22px;
        box-shadow:0 25px 70px rgba(0,0,0,.35);
    }

    .nav-links.active{
        display:flex;
    }
}

@media(max-width:480px){

    .navbar{
        padding:16px 5%;
    }

    .logo{
        font-size:20px;
    }

    .nav-links{
        right:5%;
        width:90%;
    }
}

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

@media(max-width:1024px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding:120px 6% 70px;
        gap:35px;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

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

    .hero-visual{
        min-height:520px;
    }

    .hero-image{
        max-width:420px;
        height:500px;
    }
}

@media(max-width:768px){

    .hero{
        padding:110px 6% 55px;
    }

    .hero h1{
        font-size:34px;
        line-height:1.15;
    }

    .hero p{
        font-size:15px;
    }

    .hero-visual{
        min-height:450px;
    }

    .hero-image{
        max-width:340px;
        height:410px;
        border-radius:30px;
    }

    .floating-food-card{
        max-width:250px;
        padding:12px 14px;
    }

    .floating-food-card span{
        display:none;
    }

    .card-top{
        top:15px;
        left:50%;
        transform:translateX(-50%);
    }

    .card-bottom{
        bottom:15px;
        right:50%;
        transform:translateX(50%);
    }
}

@media(max-width:480px){

    .hero{
        padding:100px 5% 45px;
    }

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

    .hero p{
        font-size:14px;
        line-height:1.7;
    }

    .hero-visual{
        min-height:400px;
    }

    .hero-image{
        max-width:300px;
        height:360px;
        border-radius:26px;
        border-width:7px;
    }

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

    .hero-stats div{
        width:100%;
        max-width:240px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .card-top{
        top:6px;
    }

    .card-bottom{
        bottom:6px;
    }
}

.special-bar-section{
    background:var(--green-soft);
}

.special-bar-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:24px;
}

.special-card,
.bar-box{
    background:var(--white);
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(15,61,46,.12);
}

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

.special-card div,
.bar-box{
    padding:24px;
}

.special-card span{
    color:var(--green-light);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.special-card h3,
.bar-box h3{
    color:var(--green-dark);
    margin:10px 0;
}

.special-card p,
.bar-box p,
.bar-box small{
    color:var(--gray);
    line-height:1.7;
}

.special-card strong{
    display:block;
    color:var(--gold);
    margin:15px 0;
    font-size:20px;
}

.add-special,
.bar-drink{
    border:none;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    padding:12px 18px;
    border-radius:30px;
    cursor:pointer;
    font-weight:900;
}

.bar-list{
    display:grid;
    gap:12px;
    margin:18px 0;
}

@media(max-width:1024px){
    .special-bar-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .special-bar-grid{
        grid-template-columns:1fr;
    }
}
/* =========================
   MAISON VERTE
   Menu + Drinks + Reservation + Experience
========================= */

/* GENERAL SECTIONS */

section{
    padding:100px 7%;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 55px;
}

.section-heading span,
.reservation-text span,
.contact-info span{
    display:inline-block;
    color:var(--green-light);
    font-size:13px;
    font-weight:900;
    letter-spacing:1.6px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-heading h2,
.reservation-text h2,
.contact-info h2{
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.12;
    color:var(--green-dark);
    margin-bottom:14px;
}

.section-heading p,
.reservation-text p,
.contact-info p{
    color:var(--gray);
    font-size:15px;
    line-height:1.8;
}

/* MENU */

.menu-section{
    background:var(--cream);
}

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

.menu-card{
    background:var(--white);
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(15,61,46,.12);
    transition:.35s ease;
}

.menu-card:hover{
    transform:translateY(-10px);
}

.menu-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.menu-info{
    padding:24px;
}

.menu-tag{
    display:inline-block;
    background:var(--green-soft);
    color:var(--green);
    padding:7px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:900;
    margin-bottom:12px;
}

.menu-info h3{
    color:var(--green-dark);
    font-size:21px;
    margin-bottom:10px;
}

.menu-info p{
    color:var(--gray);
    font-size:14px;
    line-height:1.7;
    margin-bottom:16px;
}

.menu-info label{
    display:block;
    color:var(--green-dark);
    font-size:13px;
    font-weight:800;
    margin:12px 0 7px;
}

.price-select,
.qty-input{
    width:100%;
    border:1px solid rgba(15,61,46,.16);
    border-radius:15px;
    padding:12px 14px;
    background:#fbfbfb;
    outline:none;
    color:var(--text);
    font-size:14px;
}

.add-to-order{
    width:100%;
    margin-top:16px;
    border:none;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:var(--white);
    padding:13px 18px;
    border-radius:40px;
    cursor:pointer;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.35s ease;
}

.add-to-order:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(15,61,46,.22);
}

/* DRINKS */

.drinks-section{
    background:var(--green-soft);
}

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

.drink-card{
    background:var(--white);
    border-radius:28px;
    padding:34px 24px;
    text-align:center;
    border:1px solid rgba(15,61,46,.12);
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.drink-card:hover{
    transform:translateY(-10px);
}

.drink-card i{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.drink-card h3{
    color:var(--green-dark);
    margin-bottom:8px;
}

.drink-card p{
    color:var(--gold);
    font-weight:900;
    margin-bottom:18px;
}

.add-drink{
    border:none;
    background:var(--green-dark);
    color:var(--white);
    padding:12px 22px;
    border-radius:40px;
    cursor:pointer;
    font-weight:900;
    transition:.35s ease;
}

.add-drink:hover{
    background:var(--green-light);
    transform:translateY(-3px);
}

/* RESERVATION */

.reservation-section{
    background:var(--cream);
}

.reservation-layout{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:45px;
    align-items:center;
}

.reservation-points{
    display:grid;
    gap:14px;
    margin-top:24px;
}

.reservation-points div{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--text);
    background:var(--white);
    padding:15px 16px;
    border-radius:18px;
    border:1px solid rgba(15,61,46,.12);
    box-shadow:0 14px 35px rgba(15,61,46,.08);
}

.reservation-points i{
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--green);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

.reservation-form{
    background:var(--white);
    border-radius:32px;
    padding:34px;
    border:1px solid rgba(15,61,46,.12);
    box-shadow:var(--shadow);
    display:grid;
    gap:14px;
}

.reservation-form h3{
    color:var(--green-dark);
    font-size:24px;
    margin-bottom:8px;
}

.reservation-form input,
.reservation-form textarea{
    width:100%;
    border:1px solid rgba(15,61,46,.16);
    border-radius:16px;
    padding:14px 15px;
    outline:none;
    background:#fbfbfb;
    color:var(--text);
    font-size:14px;
}

.reservation-form textarea{
    min-height:100px;
    resize:none;
}

.reservation-form button{
    border:none;
    background:#25D366;
    color:var(--white);
    padding:14px 20px;
    border-radius:40px;
    cursor:pointer;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.35s ease;
}

.reservation-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,211,102,.25);
}

/* EXPERIENCE */

.experience-section{
    background:var(--white);
}

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

.experience-card{
    background:linear-gradient(180deg,#fff,var(--green-soft));
    border:1px solid rgba(15,61,46,.12);
    border-radius:28px;
    padding:34px 24px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.experience-card:hover{
    transform:translateY(-10px);
}

.experience-card i{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    background:var(--green);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.experience-card h3{
    color:var(--green-dark);
    margin-bottom:10px;
}

.experience-card p{
    color:var(--gray);
    font-size:14px;
    line-height:1.7;
}

/* RESPONSIVE PART 2 */

@media(max-width:1024px){

    .menu-grid,
    .drinks-grid,
    .experience-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .reservation-layout{
        grid-template-columns:1fr;
    }

    .reservation-text{
        text-align:center;
    }
}

@media(max-width:768px){

    section{
        padding:80px 6%;
    }

    .menu-grid,
    .drinks-grid,
    .experience-grid{
        grid-template-columns:1fr;
    }

    .menu-card img{
        height:220px;
    }

    .reservation-form{
        padding:26px 20px;
    }
}

@media(max-width:480px){

    section{
        padding:70px 5%;
    }

    .menu-info{
        padding:20px;
    }

    .menu-card img{
        height:200px;
    }

    .drink-card,
    .experience-card{
        padding:28px 20px;
    }
}


/* =========================
   MAISON VERTE
   Gallery + Testimonials + Contact + Footer
========================= */

/* GALLERY */

.gallery-section{
    background:var(--cream);
}

.gallery-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    grid-template-rows:240px 240px;
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    background:rgba(6,31,24,.88);
    color:var(--white);
    padding:15px;
    border-radius:18px;
    border:1px solid rgba(214,181,109,.25);
    transform:translateY(20px);
    opacity:0;
    transition:.35s ease;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
    transform:translateY(0);
}

.gallery-overlay span{
    color:var(--gold);
    font-size:13px;
}

/* TESTIMONIALS */

.testimonials{
    background:var(--green-soft);
}

.testimonial-slider{
    max-width:850px;
    margin:auto;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    transition:.6s ease;
}

.testimonial-card{
    min-width:100%;
    background:var(--white);
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:var(--shadow);
}

.testimonial-card p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:var(--green-dark);
    margin-bottom:15px;
}

.stars{
    display:flex;
    justify-content:center;
    gap:5px;
}

.stars i{
    color:var(--gold);
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#c8d8cf;
    cursor:pointer;
}

.dot.active{
    background:var(--green);
}

/* CONTACT */

.contact-section{
    background:var(--cream);
}

.contact-container{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:center;
}

.contact-items{
    display:grid;
    gap:15px;
    margin-top:25px;
}

.contact-item{
    display:flex;
    gap:15px;
    align-items:center;
    background:var(--white);
    border:1px solid rgba(15,61,46,.12);
    padding:16px;
    border-radius:20px;
    box-shadow:0 14px 35px rgba(15,61,46,.08);
}

.contact-item i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:var(--green);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-item strong{
    color:var(--green-dark);
}

.contact-item span{
    color:var(--gray);
    font-size:13px;
}

.contact-map{
    height:450px;
    overflow:hidden;
    border-radius:32px;
    border:8px solid rgba(15,61,46,.12);
    box-shadow:var(--shadow);
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* FOOTER */

.footer{
    background:var(--green-dark);
    color:var(--white);
    padding:80px 7% 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-logo{
    color:var(--white);
    text-decoration:none;
    font-size:24px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:8px;
}

.footer-logo i,
.footer-logo span{
    color:var(--gold);
}

.footer-brand p{
    color:#d7e3dc;
    line-height:1.8;
    margin-top:18px;
}

.footer-links h4,
.footer-social h4{
    margin-bottom:18px;
    color:var(--white);
}

.footer-links a,
.footer-social a{
    display:block;
    text-decoration:none;
    color:#d7e3dc;
    margin-bottom:12px;
    transition:.3s ease;
}

.footer-links a:hover,
.footer-social a:hover{
    color:var(--gold);
    transform:translateX(5px);
}

.footer-social i{
    width:22px;
    color:var(--gold);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    color:#c7d5ce;
    font-size:13px;
}

/* REVEAL ANIMATION */

.reveal,
.menu-card,
.drink-card,
.experience-card,
.gallery-item,
.testimonial-card,
.contact-item{
    opacity:0;
    transform:translateY(30px);
    transition:.8s ease;
}

.reveal.active,
.menu-card.active,
.drink-card.active,
.experience-card.active,
.gallery-item.active,
.testimonial-card.active,
.contact-item.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE PART 3 */

@media(max-width:1024px){

    .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .gallery-item,
    .gallery-item.large{
        height:300px;
        grid-row:auto;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .testimonial-card{
        padding:30px 22px;
    }

    .contact-map{
        height:330px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-links a:hover,
    .footer-social a:hover{
        transform:none;
    }
}

@media(max-width:480px){

    .gallery-item,
    .gallery-item.large{
        height:230px;
    }

    .contact-map{
        height:300px;
    }

    .footer{
        padding:60px 5% 22px;
    }
}

/* ORDER BOX */
.order-number-box{
    background:var(--green-soft);
    color:var(--green-dark);
    padding:12px 15px;
    border-radius:16px;
    margin-bottom:16px;
    font-weight:800;
}

.server-section{
    margin-bottom:18px;
}

.server-section h4{
    color:var(--green-dark);
    margin-bottom:12px;
}

.server-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.server-card{
    border:1px solid rgba(15,61,46,.16);
    background:var(--white);
    color:var(--green-dark);
    padding:12px;
    border-radius:16px;
    cursor:pointer;
    font-weight:800;
    text-align:left;
}

.server-card span{
    display:block;
    font-size:11px;
    color:#25D366;
    margin-top:4px;
}

.server-card.active{
    background:var(--green-dark);
    color:white;
    border-color:var(--gold);
}

.server-card.unavailable{
    opacity:.55;
    cursor:not-allowed;
}

.server-card.unavailable span{
    color:#d60000;
}

#serverMessage{
    display:block;
    color:#d60000;
    margin-top:8px;
    font-size:12px;
}

/* SEE MORE MENU */

.extra-menu{
    display:none;
    opacity:0;
    transform:translateY(25px);
    transition:.4s ease;
}

.extra-menu.show{
    display:block;
    opacity:1;
    transform:translateY(0);
}

.menu-toggle-more{
    text-align:center;
    margin-top:35px;
}

#toggleMenu{
    border:none;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    padding:14px 30px;
    border-radius:40px;
    font-weight:900;
    cursor:pointer;
}

@media(max-width:480px){
    .server-grid{
        grid-template-columns:1fr;
    }
}

/* ORDER FAILED */
.order-box{
    position:relative;
}

.order-message{
    position:absolute;

    top:50%;
    left:50%;

    width:85%;
    max-width:340px;

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

    background:#ffe5e5;
    color:#d60000;

    border:1px solid rgba(214,0,0,.25);

    padding:14px 18px;

    border-radius:16px;

    text-align:center;

    font-size:14px;
    font-weight:800;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    z-index:9999;

    transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease;
}

.order-message.show{
    opacity:1;
    visibility:visible;
    transform:translate(-50%, -50%);
}

.order-message{
    top:100%;
}