﻿/* =========================================================
   TE DAJA — PORTAL STYLESHEET (responsive rewrite)
   Design unchanged; fluid sizing + breakpoints throughout.
   ========================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #C8381A;
    --red-dark: #9E2A12;
    --red-light: #E8651A;
    --gold: #D4900A;
    --gold-light: #F0B429;
    --cream: #FFF8F0;
    --cream2: #FFF3E8;
    --brown: #2C1A0E;
    --brown2: #4A2E1A;
    --white: #ffffff;
    --gray: #f5f5f5;
    --shadow: 0 4px 24px rgba(200,56,26,0.12);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    /* fluid section padding tokens */
    --section-pad-y: clamp(3.5rem, 7vw, 6rem);
    --section-pad-x: clamp(1.1rem, 4vw, 2rem);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden;
    padding-top: 70px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background: #0d0d0d;
    transition: background 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

    .navbar.scrolled {
        background: rgba(10,10,10,0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(255,255,255,0.07);
        height: 60px;
    }

.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--red);
    transition: width 0.1s linear;
    z-index: 2;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ── Brand ── */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s, transform 0.3s;
    display: block;
}

.nav-brand:hover .nav-logo {
    border-color: var(--red);
    transform: scale(1.05);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.nav-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-style: normal;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin-left: auto;
}

    .nav-links li a {
        display: block;
        padding: 0.5rem 0.85rem;
        font-family: 'Lato', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        border-radius: 6px;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            right: 50%;
            height: 1.5px;
            background: var(--red);
            transition: left 0.25s ease, right 0.25s ease;
            border-radius: 2px;
        }

        .nav-links li a:hover {
            color: #fff;
        }

            .nav-links li a:hover::after,
            .nav-links li a.active-link::after {
                left: 0.85rem;
                right: 0.85rem;
            }

        .nav-links li a.active-link {
            color: #fff;
        }

/* ── Reserve / Order button ── */
.btn-nav {
    background: var(--red) !important;
    color: #fff !important;
    padding: 0.48rem 1.2rem !important;
    border-radius: 999px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.07em !important;
    box-shadow: 0 4px 14px rgba(200,56,26,0.4) !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    text-decoration: none !important;
}

    .btn-nav::after {
        display: none !important;
    }

    .btn-nav:hover {
        background: #a02d14 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 20px rgba(200,56,26,0.5) !important;
        color: #fff !important;
    }

/* ── Language switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.lang-btn {
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.07em;
    font-family: 'Lato', sans-serif;
}

    .lang-btn:hover {
        color: #fff;
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.15);
    }

    .lang-btn.active {
        color: #fff;
        background: rgba(200,56,26,0.3);
        border-color: rgba(200,56,26,0.6);
    }

/* ── Hamburger ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    z-index: 1002;
    flex-shrink: 0;
}

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── Overlay ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
}

    .nav-overlay.open {
        display: block;
    }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--brown);
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,56,26,0.25) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(212,144,10,0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    animation: fadeUp 1s ease both;
}

.hero-logo-wrap {
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: clamp(120px, 30vw, 180px);
    height: clamp(120px, 30vw, 180px);
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--gold);
    box-shadow: 0 0 60px rgba(212,144,10,0.3);
    animation: float 5s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,144,10,0.15);
    border: 1px solid rgba(212,144,10,0.4);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: clamp(0.68rem, 2vw, 0.78rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 0.6rem;
    text-shadow: 2px 4px 16px rgba(0,0,0,0.4);
}

.hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--red);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--red-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200,56,26,0.35);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

    .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

    .btn-whatsapp:hover {
        background: #1da851;
        transform: translateY(-2px);
    }

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--red);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 22s linear infinite;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.9);
}

    .marquee-inner span {
        margin: 0 1rem;
    }

        .marquee-inner span:nth-child(even) {
            opacity: 0.5;
        }

/* ===== STATS ===== */
.stats-section {
    background: var(--brown);
    padding: 3rem var(--section-pad-x);
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-plus, .stat-label {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* ===== SECTION COMMONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

    .section-label::before, .section-label::after {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--red);
        opacity: 0.4;
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--brown);
    line-height: 1.1;
}

    .section-title em {
        color: var(--red);
        font-style: italic;
    }

/* ===== ABOUT ===== */
.about-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--cream2);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    width: min(340px, 80vw);
    aspect-ratio: 1;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--gold);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.about-logo-big {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--red);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

    .about-badge-float i {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.3rem;
    }

.about-text .section-label {
    justify-content: flex-start;
}

    .about-text .section-label::before {
        display: none;
    }

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.about-desc {
    color: var(--brown2);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--brown);
    font-weight: 600;
    font-size: 0.9rem;
}

    .feature i {
        color: var(--red);
        font-size: 1.1rem;
    }

/* ===== MENU SECTION (home) ===== */
.menu-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--cream);
}

.menu-categories {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cat-tab {
    padding: 0.55rem 1.3rem;
    border-radius: 24px;
    border: 2px solid #E0C4B0;
    background: transparent;
    color: var(--brown2);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

    .cat-tab:hover, .cat-tab.active {
        background: var(--red);
        color: #fff;
        border-color: var(--red);
    }

.menu-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #F0E0D0;
    padding: 1.6rem;
    transition: var(--transition);
    cursor: default;
}

    .menu-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-4px);
        border-color: var(--red);
    }

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.menu-card-cat {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.menu-card-badge {
    background: #FFF3CD;
    color: #856404;
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
}

.menu-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--brown);
}

.menu-card-body p {
    font-size: 0.85rem;
    color: #7A5A4A;
    line-height: 1.5;
    font-style: italic;
}

.menu-card-footer {
    margin-top: 1rem;
    border-top: 1px solid #F0E0D0;
    padding-top: 0.8rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--brown) 0%, var(--red-dark) 100%);
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem,4vw,3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-lg {
    background: var(--gold);
    color: var(--brown);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

    .btn-primary-lg:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(212,144,10,0.4);
    }

.btn-wa-lg {
    background: #25D366;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

    .btn-wa-lg:hover {
        background: #1da851;
        transform: translateY(-2px);
    }

/* ===== MAP SECTION ===== */
.map-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--cream2);
}

.map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.map-info-card {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    max-width: calc(100% - 3rem);
    z-index: 500;
}

    .map-info-card i {
        color: var(--red);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .map-info-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .map-info-card p {
        font-size: 0.82rem;
        color: #666;
        margin: 0.3rem 0;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

        .map-info-card p i {
            font-size: 0.85rem;
        }

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--red);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.8rem;
    transition: var(--transition);
}

    .btn-directions:hover {
        background: var(--red-light);
    }

/* ===== REVIEWS ===== */
.reviews-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--brown);
}

    .reviews-section .section-title {
        color: #fff;
    }

.reviews-grid {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: var(--transition);
}

    .review-card:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-3px);
    }

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.review-text {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-author span {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 700;
}

.leave-review {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border: 1px solid rgba(255,255,255,0.1);
}

    .leave-review h3 {
        color: #fff;
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .leave-review input, .leave-review textarea {
        width: 100%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 8px;
        padding: 0.8rem 1rem;
        color: #fff;
        font-family: 'Lato', sans-serif;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        outline: none;
        transition: var(--transition);
    }

        .leave-review input:focus, .leave-review textarea:focus {
            border-color: var(--gold);
        }

    .leave-review textarea {
        height: 100px;
        resize: vertical;
    }

        .leave-review input::placeholder, .leave-review textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

    .star-rating input {
        display: none;
    }

    .star-rating label {
        color: rgba(255,255,255,0.3);
        font-size: 1.8rem;
        cursor: pointer;
        transition: color 0.2s;
    }

        .star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label {
            color: var(--gold);
        }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--brown) 0%, var(--red-dark) 100%);
    padding: clamp(6rem, 12vw, 8rem) var(--section-pad-x) clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}

    .page-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem,5vw,3.5rem);
        color: #fff;
        margin-bottom: 0.6rem;
    }

        .page-hero h1 em {
            color: var(--gold);
        }

    .page-hero p {
        color: rgba(255,255,255,0.7);
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        font-style: italic;
    }

/* ===== FULL MENU PAGE ===== */
.full-menu {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem) var(--section-pad-x);
}

.menu-filter-bar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.55rem 1.3rem;
    border-radius: 24px;
    border: 2px solid #E0C4B0;
    background: transparent;
    color: var(--brown2);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--red);
        color: #fff;
        border-color: var(--red);
    }

.menu-section-group {
    margin-bottom: 3rem;
}

.menu-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--cream2);
    padding-bottom: 0.8rem;
}

.group-icon {
    font-size: 2rem;
}

.menu-group-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--brown);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.2rem;
}

.menu-item-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #F0E0D0;
    overflow: hidden;
    display: flex;
    transition: var(--transition);
}

    .menu-item-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--red);
    }

.item-img {
    width: 100px;
    flex-shrink: 0;
}

    .item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.item-info {
    padding: 1rem 1.2rem;
    flex: 1;
    min-width: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--brown);
}

.badge-top {
    background: #FFF3CD;
    color: #856404;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.item-info p {
    font-size: 0.82rem;
    color: #7A5A4A;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.item-price {
    color: var(--red);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

/* ===== RESERVATION PAGE ===== */
.reservation-section {
    padding: clamp(2rem, 5vw, 3rem) var(--section-pad-x) clamp(3rem, 7vw, 5rem);
    max-width: 1100px;
    margin: 0 auto;
}

.res-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

.res-info-card {
    background: var(--brown);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 90px;
}

.res-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--gold);
}

.res-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.res-details p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.res-details i {
    color: var(--red);
}

.qr-flow {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

    .qr-flow h4 {
        color: var(--gold);
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

.flow-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

    .flow-step span {
        width: 26px;
        height: 26px;
        background: var(--red);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .flow-step p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.75);
    }

.res-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-lg);
    border: 1px solid #F0E0D0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--brown2);
        margin-bottom: 0.4rem;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 2px solid #E8D8C8;
        border-radius: 8px;
        font-family: 'Lato', sans-serif;
        font-size: 0.92rem;
        color: var(--brown);
        background: var(--cream);
        outline: none;
        transition: var(--transition);
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--red);
            background: #fff;
        }

    .form-group textarea {
        height: 90px;
        resize: vertical;
    }

.form-consent {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #7A5A4A;
}

.btn-submit-res {
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition);
}

    .btn-submit-res:hover {
        background: var(--red-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200,56,26,0.3);
    }

/* ===== CONFIRMATION PAGE ===== */
.confirmation-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 9vw, 6rem) var(--section-pad-x) 3rem;
}

.confirm-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 5vw, 3rem);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid #F0E0D0;
}

.confirm-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.confirm-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 5vw, 2rem);
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.confirm-sub {
    color: #666;
    margin-bottom: 1.5rem;
}

.confirm-details {
    background: var(--cream2);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.cd-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--brown2);
    font-size: 0.9rem;
}

    .cd-row i {
        color: var(--red);
    }

.status-badge.pending {
    background: #FFF3CD;
    color: #856404;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.confirm-msg {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.confirm-note {
    background: #E8F5E9;
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

    .confirm-note i {
        color: #25D366;
        font-size: 1.5rem;
    }

    .confirm-note p {
        font-size: 0.85rem;
        color: #2E7D32;
    }

.btn-wa-confirm {
    background: #25D366;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

    .btn-wa-confirm:hover {
        background: #1da851;
    }

.btn-back {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ===== QR PAGE ===== */
.qr-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 9vw, 6rem) var(--section-pad-x) 3rem;
    background: var(--cream2);
}

.qr-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 5vw, 3rem);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.qr-brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--gold);
}

.qr-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.qr-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
}

    .qr-details-row span {
        background: var(--cream2);
        padding: 0.4rem 0.9rem;
        border-radius: 20px;
        font-size: 0.82rem;
        color: var(--brown2);
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

.qr-image-wrap {
    margin: 1rem 0 2rem;
}

.qr-image {
    width: min(220px, 70vw);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
    border: 4px solid var(--gold);
    border-radius: 12px;
}

.qr-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.8rem;
    font-style: italic;
}

.qr-pending {
    background: #FFF3CD;
    border-radius: 12px;
    padding: 2rem;
    color: #856404;
}

    .qr-pending i {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

.qr-token-info {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown);
    color: rgba(255,255,255,0.75);
    padding: clamp(2.5rem, 6vw, 4rem) var(--section-pad-x) 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--gold);
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-style: italic;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.85rem;
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer i {
    color: var(--red);
}

.footer-social {
    display: flex;
    flex-direction: column;
}

    .footer-social a {
        color: rgba(255,255,255,0.6);
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
        transition: color 0.2s;
    }

        .footer-social a:hover {
            color: var(--gold);
        }

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

    .footer-social-icons a {
        color: rgba(255,255,255,0.6);
        font-size: 1.3rem;
        transition: color 0.2s;
    }

        .footer-social-icons a:hover {
            color: var(--gold);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.33%);
    }
}

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

/* ── Tablets / small laptops (≤1100px) ── */
@media (max-width: 1100px) {
    .about-container {
        gap: 2.5rem;
    }

    .res-wrapper {
        grid-template-columns: 280px 1fr;
    }
}

/* ── Tablet (≤900px): nav collapses, columns stack ── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-tagline {
        display: none;
    }

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

    .about-visual {
        display: none;
    }

    .about-text .section-label {
        justify-content: center;
    }

        .about-text .section-label::before {
            display: block;
        }

    .about-text .section-title {
        text-align: center;
    }

    .about-features {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .res-wrapper {
        grid-template-columns: 1fr;
    }

    .res-info-card {
        position: static;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-info-card {
        position: static;
        margin-bottom: 1rem;
        max-width: none;
        min-width: 0;
    }

    /* ── Mobile slide-in menu ── */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 80vw);
        height: 100dvh;
        background: #0d0d0d;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 5rem 1.5rem 2rem;
        transform: translateX(110%);
        transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
        border-left: 1px solid rgba(255,255,255,0.07);
        margin-left: 0;
        z-index: 1000;
        overflow-y: auto;
        display: flex !important;
    }

    .navbar {
        background: rgba(10,10,10,0.92) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .lang-switcher {
        display: flex !important;
        order: 3;
        margin-left: 0;
    }

    .lang-btn {
        padding: 0.25rem 0.55rem;
        font-size: 0.65rem;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-template-areas: "brand lang toggle";
        align-items: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .nav-brand {
        grid-area: brand;
    }

    .lang-switcher {
        grid-area: lang;
    }

    .nav-toggle {
        grid-area: toggle;
        margin-left: 0;
    }

    .nav-links {
        grid-area: unset;
    }

        .nav-links.open {
            transform: translateX(0);
        }

        .nav-links li {
            opacity: 0;
            transform: translateX(16px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .nav-links.open li {
            opacity: 1;
            transform: translateX(0);
        }

            .nav-links.open li:nth-child(1) {
                transition-delay: 0.06s;
            }

            .nav-links.open li:nth-child(2) {
                transition-delay: 0.10s;
            }

            .nav-links.open li:nth-child(3) {
                transition-delay: 0.14s;
            }

            .nav-links.open li:nth-child(4) {
                transition-delay: 0.18s;
            }

            .nav-links.open li:nth-child(5) {
                transition-delay: 0.22s;
            }

            .nav-links.open li:nth-child(6) {
                transition-delay: 0.26s;
            }

            .nav-links.open li:nth-child(7) {
                transition-delay: 0.30s;
            }

        .nav-links li a {
            font-size: 0.95rem;
            padding: 1rem 0.5rem;
            border-radius: 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            color: rgba(255,255,255,0.8) !important;
            letter-spacing: 0.1em;
        }

            .nav-links li a::after {
                display: none !important;
            }

        .nav-links li:last-child a {
            border-bottom: none;
        }

    .btn-nav {
        margin-top: 1.25rem !important;
        display: block !important;
        text-align: center !important;
        border-radius: 10px !important;
        padding: 0.85rem 1rem !important;
        font-size: 0.88rem !important;
    }
}

/* ── Large phone (≤600px) ── */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer p {
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-name {
        font-size: 0.9rem;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-cta .btn-primary, .hero-cta .btn-ghost, .hero-cta .btn-whatsapp {
            justify-content: center;
        }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

        .cta-btns .btn-primary-lg, .cta-btns .btn-wa-lg {
            justify-content: center;
        }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ── Small phone (≤400px) ── */
@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    /* let the menu-item image+text stack so neither is cramped */
    .menu-item-card {
        flex-direction: column;
    }

    .item-img {
        width: 100%;
        height: 160px;
    }

    .qr-details-row {
        gap: 0.4rem;
    }

    .section-label {
        letter-spacing: 0.25em;
    }
}

/* ===== ALLERGEN BADGES (public menu) ===== */
.allergen-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: .4rem;
}

.allergen-badge {
    background: #FEF3C7;
    color: #92400E;
    font-size: .7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
}

.allergen-legend {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
}

    .allergen-legend h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: .5rem;
    }

.allergen-note {
    color: #666;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.allergen-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: .4rem;
    font-size: .82rem;
    color: #444;
}
