:root {
    --bg-dark: #0a0b0d;
    --card-bg: #111319;
    --gold: #c5a059;
    --gold-light: #e6ca85;
    --gold-glow: rgba(197, 160, 89, 0.25);
    --text-main: #f8fafc;
    --text-muted: #8e9bb0;
    --border-subtle: rgba(197, 160, 89, 0.18);
    --open-green: #2ed573;
    --closed-red: #ff4757;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; 
    width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(10, 11, 13, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    transition: background-color 0.4s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.nav-logo span { color: var(--gold); }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.status-badge.open {
    background: rgba(46, 213, 115, 0.12);
    color: var(--open-green);
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.status-badge.closed {
    background: rgba(255, 71, 87, 0.12);
    color: var(--closed-red);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.status-badge.open .status-dot {
    background: var(--open-green);
    box-shadow: 0 0 8px var(--open-green);
    animation: pulseGlow 2s infinite ease-in-out;
}

.status-badge.closed .status-dot { background: var(--closed-red); }

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }

.nav-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* HERO SECTION */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 16px 60px;
    background: radial-gradient(circle at 50% 30%, #171b26 0%, var(--bg-dark) 80%);
}

.hero-content { max-width: 850px; width: 100%; }

.gold-divider {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 0.75rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.hero-badge {
    display: inline-block;
    color: var(--gold);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    background: rgba(197, 160, 89, 0.03);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    max-width: 650px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #a37f3a 100%);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* SECTIONS COMMON */
.section-header { text-align: center; margin-bottom: 40px; }

.sub-title {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 6px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
}

.menu-subnote { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

.line-accent {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* SPECIALS */
.specials-section { padding: 60px 16px; max-width: 1200px; margin: 0 auto; }

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.text-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    padding: 28px 22px;
    border-radius: 18px;
    position: relative;
}

.highlight-glow {
    border-color: var(--gold);
    background: linear-gradient(180deg, #161922 0%, var(--card-bg) 100%);
}

.card-icon { font-size: 2rem; margin-bottom: 12px; display: inline-block; }

.card-tag {
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.text-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.text-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.card-footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 12px; }
.badge-gold { color: var(--gold-light); font-size: 0.75rem; font-weight: 600; }

/* MENU CATEGORIES */
.menu-section { padding: 60px 16px; max-width: 1100px; margin: 0 auto; }

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: left;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

.category-card:active { background: rgba(197, 160, 89, 0.08); }

.cat-icon { font-size: 2.2rem; margin-bottom: 10px; }

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: #fff;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.view-btn { color: var(--gold); font-weight: 700; font-size: 0.82rem; }

/* SIDE DRAWER */
.drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.open { opacity: 1; visibility: visible; }

.side-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 440px;
    max-width: 100%;
    height: 100%;
    height: -webkit-fill-available;
    background: var(--card-bg);
    border-left: 1px solid var(--border-subtle);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.side-drawer.open { transform: translateX(0); }

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 11, 13, 0.8);
}

.drawer-title-group { display: flex; align-items: center; gap: 10px; }
.drawer-icon { font-size: 1.6rem; }
.drawer-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-light); }

.close-drawer {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-body {
    padding: 20px 16px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    -webkit-overflow-scrolling: touch;
}

.menu-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
    border-radius: 14px;
}

.gold-border { border-color: var(--gold) !important; }
.menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.menu-header h4 { font-size: 1rem; font-weight: 600; color: #fff; }
.badge { background: var(--gold); color: #000; font-size: 0.68rem; padding: 2px 8px; border-radius: 8px; font-weight: 700; }
.menu-desc { color: var(--text-muted); font-size: 0.84rem; line-height: 1.45; }

/* CONTACT SECTION */
.contact-section {
    padding: 60px 16px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0f14 100%);
}

.contact-container { max-width: 750px; margin: 0 auto; }

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    padding: 32px 20px;
    border-radius: 20px;
    text-align: center;
}

.contact-card h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; }
.gold-line { width: 40px; height: 2px; background: var(--gold); margin: 12px auto 16px; }
.contact-desc { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }

.info-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-item { font-size: 0.92rem; color: #cbd5e1; }
.info-item a { color: var(--gold); text-decoration: none; font-weight: 700; }

.map-wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}

.google-map { width: 100%; height: 220px; border: 0; display: block; }
.contact-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* AMBIENT TOGGLE */
.ambient-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(17, 19, 25, 0.92);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 16px;
    min-height: 44px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.ambient-toggle.playing {
    border-color: var(--open-green);
    color: var(--open-green);
    background: rgba(46, 213, 115, 0.15);
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 14px calc(10px + var(--safe-bottom));
    z-index: 999;
    gap: 10px;
}

.bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.bar-btn.call { background: var(--open-green); color: #fff; }
.bar-btn.menu { background: var(--gold); color: #000; }

footer {
    text-align: center;
    padding: 30px 16px calc(30px + var(--safe-bottom));
    color: #4a5568;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-up { transform: translateY(35px); }
.reveal-down { transform: translateY(-30px); }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal-zoom { transform: scale(0.92); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* HOVER DESKTOP ONLY */
@media (hover: hover) {
    .text-card:hover { transform: translateY(-6px) !important; border-color: var(--gold); }
    .category-card:hover { border-color: var(--gold); transform: translateY(-5px) !important; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(197, 160, 89, 0.45); }
    .ambient-toggle:hover { background: var(--gold); color: #000; }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-bottom-bar { display: flex; }
    
    .ambient-toggle {
        bottom: calc(72px + var(--safe-bottom));
        left: 14px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    footer { padding-bottom: calc(85px + var(--safe-bottom)); }
    
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .contact-actions { flex-direction: column; width: 100%; }
    .contact-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .nav-container { padding: 12px 14px; }
    .nav-logo { font-size: 1.1rem; }
    .status-badge { font-size: 0.7rem; padding: 4px 10px; }
    .specials-grid, .category-cards-grid { grid-template-columns: 1fr; }
    .side-drawer { width: 100%; }
}