/* ============================================
   AG KÖK & BAR — Global Design System v2
   Pomegranate Red (#c1121f) / Cyber Cyan (#00f0ff)
   Maximum 5px blur radius — clean, sharp, premium
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --bg: #050505;
    --bg-darker: #030303;
    --accent-red: #c1121f;
    --accent-red-dim: #b7094c;
    --accent-red-glow: rgba(193,18,31,0.3);
    --accent-cyan: #00f0ff;
    --accent-cyan-dim: #00b8d4;
    --accent-cyan-glow: rgba(0,240,255,0.3);
    --accent-orange: #ff6600;
    --accent-emerald: #00ff66;
    --accent-amber: #ffcc00;
    --accent-crimson: #ff3300;
    --accent-purple: #cc00ff;
    --accent-lightgreen: #a3ff33;
    --accent-pink: #ff66cc;
    --accent-sapphire: #0066ff;
    --accent-lightblue: #33ccff;
    --surface: #0a0a0a;
    --surface-light: #111111;
    --text-main: #e8e8e8;
    --text-muted: #6b6b6b;
    --border: #1a1a1a;
}

.light-mode {
    --bg: #f5f2ed;
    --bg-darker: #ebe7e0;
    --accent-red: #a00f1a;
    --accent-red-dim: #8a0638;
    --accent-red-glow: rgba(160,15,26,0.25);
    --accent-cyan: #0099aa;
    --accent-cyan-dim: #007788;
    --accent-cyan-glow: rgba(0,153,170,0.25);
    --accent-orange: #cc5200;
    --accent-emerald: #00cc52;
    --accent-amber: #cca300;
    --accent-crimson: #cc2900;
    --accent-purple: #9900cc;
    --accent-lightgreen: #82cc29;
    --accent-pink: #cc5299;
    --accent-sapphire: #0052cc;
    --accent-lightblue: #29a3cc;
    --surface: #ffffff;
    --surface-light: #fafaf8;
    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;
    --border: #d5d0c8;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg); color: var(--text-main);
    font-family: 'Archivo', sans-serif; overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== REDUCED-GLOW KEYFRAMES (max 5px blur) ===== */
@keyframes neonFlickerRed {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 1px var(--accent-red-glow),
            0 0 3px var(--accent-red),
            0 0 5px var(--accent-red);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.85;
    }
}

@keyframes neonFlickerCyan {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 1px var(--accent-cyan-glow),
            0 0 3px var(--accent-cyan),
            0 0 5px var(--accent-cyan);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.85;
    }
}

@keyframes borderFlickerRed {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        box-shadow:
            0 0 2px var(--accent-red-glow),
            0 0 4px var(--accent-red),
            inset 0 0 4px rgba(193,18,31,0.03);
    }
    20%, 24%, 55% { box-shadow: none; }
}

@keyframes borderFlickerCyan {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        box-shadow:
            0 0 2px var(--accent-cyan-glow),
            0 0 4px var(--accent-cyan),
            inset 0 0 4px rgba(0,240,255,0.03);
    }
    20%, 24%, 55% { box-shadow: none; }
}

@keyframes dualGlow {
    0%, 100% { box-shadow: 0 0 2px var(--accent-red-glow), 0 0 4px var(--accent-red), inset 0 0 4px rgba(193,18,31,0.03); }
    50% { box-shadow: 0 0 2px var(--accent-cyan-glow), 0 0 4px var(--accent-cyan), inset 0 0 4px rgba(0,240,255,0.03); }
}

@keyframes glowPulseRed {
    0%, 100% { box-shadow: 0 0 3px var(--accent-red), 0 0 5px var(--accent-red-glow); }
    50% { box-shadow: 0 0 5px var(--accent-red), 0 0 8px var(--accent-red-glow); }
}

@keyframes glowPulseCyan {
    0%, 100% { box-shadow: 0 0 3px var(--accent-cyan), 0 0 5px var(--accent-cyan-glow); }
    50% { box-shadow: 0 0 5px var(--accent-cyan), 0 0 8px var(--accent-cyan-glow); }
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== SCAN LINES ===== */
@keyframes scanLines {
    0% { background-position: 0 0; }
    100% { background-position: 0 3px; }
}
@keyframes scanMove {
    0% { top: -30%; }
    100% { top: 100%; }
}

.scan-lines {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.25;
    background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,0,0,0.15) 1px, rgba(0,0,0,0.15) 2px);
    background-size: 100% 3px;
    animation: scanLines 0.15s linear infinite;
}
.scan-lines::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(193,18,31,0.02) 50%, transparent 55%, transparent 100%);
    height: 30%; animation: scanMove 4s linear infinite;
}

/* ===== NEON CLASSES ===== */
.neon-text-red { animation: neonFlickerRed 3s infinite alternate; }
.neon-text-cyan { animation: neonFlickerCyan 3s infinite alternate; }
.neon-border-red { animation: borderFlickerRed 4s infinite; }
.neon-border-cyan { animation: borderFlickerCyan 4s infinite; }
.neon-border-dual { animation: dualGlow 6s infinite; }
.neon-pulse { animation: neonPulse 2s ease-in-out infinite; }
.glow-pulse-red { animation: glowPulseRed 2s ease-in-out infinite; }
.glow-pulse-cyan { animation: glowPulseCyan 2s ease-in-out infinite; }

/* ===== VHS LINE EFFECT (toned-down) ===== */
@keyframes vhsLines {
    0% { transform: translateY(-5%); opacity: 0; }
    3% { opacity: 0.6; } 6% { opacity: 0; }
    10% { opacity: 0.4; } 12% { opacity: 0; }
    100% { transform: translateY(105%); opacity: 0; }
}
@keyframes vhsGlitch {
    0%, 70%, 100% { opacity: 0; }
    71% { opacity: 0.15; transform: translateX(3px); }
    72% { opacity: 0; transform: translateX(-2px); }
    75% { opacity: 0.18; } 76% { opacity: 0; }
    79% { opacity: 0.12; } 80% { opacity: 0; }
}
@keyframes vhsTape {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.2; }
}
.vhs-overlay {
    position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden;
}
.vhs-overlay::before {
    content: ''; position: absolute; left: 0; width: 100%; height: 3px;
    background: rgba(193,18,31,0.08); box-shadow: 0 0 6px rgba(193,18,31,0.05);
    animation: vhsLines 2.5s linear infinite;
}
.vhs-overlay .vhs-line-extra {
    position: absolute; left: 0; width: 50%; height: 2px;
    background: rgba(0,240,255,0.06);
    animation: vhsLines 3.5s linear infinite; animation-delay: 1.2s;
}
.vhs-overlay::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(193,18,31,0.02) 2px, rgba(193,18,31,0.02) 3px);
    animation: vhsGlitch 0.3s linear infinite;
}
.vhs-overlay .vhs-tape {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 25%, rgba(193,18,31,0.03) 48%, rgba(0,0,0,0.1) 50%, rgba(0,240,255,0.03) 52%, transparent 75%);
    animation: vhsTape 3s ease-in-out infinite;
}

/* ===== NEON STROKE (Logo) ===== */
.neon-stroke {
    color: var(--accent-red);
    text-shadow: 0 0 1px var(--accent-red-glow), 0 0 3px var(--accent-red), 0 0 5px var(--accent-red);
    animation: strokeFlickerRed 3s infinite alternate;
}
@keyframes strokeFlickerRed {
    0%, 88% { text-shadow: 0 0 1px var(--accent-red-glow), 0 0 3px var(--accent-red), 0 0 5px var(--accent-red); }
    92% { text-shadow: 0 0 2px var(--accent-red), 0 0 4px var(--accent-red); }
    100% { text-shadow: 0 0 1px var(--accent-red-glow), 0 0 3px var(--accent-red), 0 0 5px var(--accent-red); }
}
.neon-stroke-sub {
    color: var(--accent-cyan);
    text-shadow: 0 0 1px var(--accent-cyan-glow), 0 0 3px var(--accent-cyan);
    animation: strokeFlickerCyan 3s infinite alternate;
    animation-delay: 1.5s;
}
@keyframes strokeFlickerCyan {
    0%, 88% { text-shadow: 0 0 1px var(--accent-cyan-glow), 0 0 3px var(--accent-cyan); }
    92% { text-shadow: 0 0 2px var(--accent-cyan), 0 0 4px var(--accent-cyan); }
    100% { text-shadow: 0 0 1px var(--accent-cyan-glow), 0 0 3px var(--accent-cyan); }
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    background: var(--bg);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
    transform: translateZ(0);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 24px; height: 85px;
}
.logo-link {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Oswald', sans-serif; font-size: 22px;
    font-weight: 500; color: #fff; text-decoration: none;
}
.logo-link img { height: 44px; width: auto; }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.main-nav a {
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif; font-size: 15px;
    font-weight: 400;
    text-transform: uppercase; letter-spacing: 2px;
    transition: color 150ms ease; padding: 4px 0; position: relative;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--accent-red);
    transition: width 200ms ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent-red); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-toggles { display: flex; align-items: center; gap: 8px; }
.toggle-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); font-size: 14px;
    cursor: pointer; transition: all 0.3s ease;
}
.toggle-btn:hover, .toggle-btn.active { color: var(--accent-red); border-color: var(--accent-red); }
.lang-toggle {
    font-family: 'Oswald', sans-serif; font-size: 11px;
    width: auto; padding: 0 10px; letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 1.5px;
    background: var(--text-main); transition: all 0.3s ease;
}
.mobile-menu-btn span:nth-child(2) {
    width: 16px; background: var(--accent-red); margin-left: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
    position: fixed; inset: 0; z-index: 1001;
    background: rgba(3,3,3,0.98);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto; padding: 100px 20px 40px;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
    position: absolute; top: 16px; right: 16px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(193,18,31,0.1); border: 1px solid var(--accent-red);
    color: var(--accent-red); font-size: 22px;
    cursor: pointer; border-radius: 50%; z-index: 10;
}
.mobile-nav a {
    font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
    font-weight: 400;
    color: var(--text-muted); text-decoration: none;
    letter-spacing: 2px; transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--accent-red); }
.mobile-toggles { display: flex; gap: 1rem; margin-top: 1rem; }
.mobile-toggles .toggle-btn { width: 48px; height: 48px; font-size: 16px; }
.mobile-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.mobile-socials a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); color: var(--text-muted);
    font-size: 14px; transition: all 0.3s ease;
}
.mobile-socials a:hover { color: var(--accent-red); border-color: var(--accent-red); }
.light-mode .mobile-nav { background: rgba(245,242,237,0.98); }
.light-mode .mobile-nav a { color: var(--text-main); }
.light-mode .mobile-nav a:hover { color: var(--accent-red); }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative; width: 100%; height: 100vh;
    min-height: 600px; max-height: 1000px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.4) 30%,
        rgba(10,10,10,0.55) 60%,
        rgba(10,10,10,0.7) 100%
    );
}
.hero-content {
    position: relative; z-index: 4;
    display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%; max-width: 1200px;
    margin: 0 auto; padding: 0 24px 80px;
}
.hero-subtitle {
    font-family: 'Archivo', sans-serif; font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent-red); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}
.hero-subtitle::before {
    content: ''; width: 32px; height: 1px; background: var(--accent-red);
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 0.9; margin: 0 0 8px;
    color: var(--accent-red);
    text-shadow: 0 0 4px rgba(193,18,31,0.6), 0 0 8px rgba(193,18,31,0.3);
    animation: heroGlowPulse 3s ease-in-out infinite alternate;
}
.hero-title-stroke {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 0.9; margin: 0 0 8px;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-cyan);
    text-stroke: 1px var(--accent-cyan);
    text-shadow: 0 0 4px rgba(0,240,255,0.3), 0 0 8px rgba(0,240,255,0.15);
    animation: heroGlowPulseCyan 3s ease-in-out infinite alternate;
}
.hero-desc {
    font-size: 15px; font-weight: 400; color: var(--text-muted);
    max-width: 500px; line-height: 1.6; margin: 20px 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== HERO GLOW PULSE ===== */
@keyframes heroGlowPulse {
    0% { text-shadow: 0 0 4px rgba(193,18,31,0.5), 0 0 8px rgba(193,18,31,0.2); }
    100% { text-shadow: 0 0 6px rgba(193,18,31,0.7), 0 0 12px rgba(193,18,31,0.35); }
}
@keyframes heroGlowPulseCyan {
    0% { text-shadow: 0 0 4px rgba(0,240,255,0.25), 0 0 8px rgba(0,240,255,0.1); }
    100% { text-shadow: 0 0 6px rgba(0,240,255,0.4), 0 0 12px rgba(0,240,255,0.2); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; font-family: 'Oswald', sans-serif;
    font-size: 13px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    border: 1px solid var(--accent-red); color: var(--accent-red);
    background: transparent; cursor: pointer;
    transition: all 200ms ease; position: relative; overflow: hidden;
    box-shadow: 0 0 6px rgba(193,18,31,0.15), inset 0 0 4px rgba(193,18,31,0.05);
}
.btn:active { transform: scale(0.97); }
.btn::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 0; background: var(--accent-red);
    transition: height 200ms ease; z-index: -1;
}
.btn:hover { color: #000; }
.btn:hover::before { height: 100%; }
.btn-outline { border-color: var(--text-muted); color: var(--text-muted); }
.btn-outline::before { background: var(--text-muted); }
.btn-outline:hover { color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

.btn-accent {
    position:relative; display:inline-flex; align-items:center; gap:0.5rem;
    padding:0.75rem 1.75rem; background:transparent; border:1px solid var(--accent-red);
    color:var(--accent-red); font-family:'Oswald',sans-serif; font-weight:500;
    font-size:0.8rem; letter-spacing:0.15em; text-transform:uppercase;
    cursor:pointer; overflow:hidden; transition:color 0.4s ease; text-decoration:none;
}
.btn-accent::before {
    content:''; position:absolute; bottom:0; left:0; width:100%; height:0%;
    background:var(--accent-red); transition:height 0.4s cubic-bezier(0.16,1,0.3,1); z-index:-1;
}
.btn-accent:hover::before { height:100%; }
.btn-accent:hover { color:var(--bg-darker); }

.btn-accent-cyan {
    position:relative; display:inline-flex; align-items:center; gap:0.5rem;
    padding:0.75rem 1.75rem; background:transparent; border:1px solid var(--accent-cyan);
    color:var(--accent-cyan); font-family:'Oswald',sans-serif; font-weight:500;
    font-size:0.8rem; letter-spacing:0.15em; text-transform:uppercase;
    cursor:pointer; overflow:hidden; transition:color 300ms ease; text-decoration:none;
    box-shadow: 0 0 6px rgba(0,240,255,0.15), inset 0 0 4px rgba(0,240,255,0.05);
}
.btn-accent-cyan:active { transform: scale(0.97); }
.btn-accent-cyan::before {
    content:''; position:absolute; bottom:0; left:0; width:100%; height:0%;
    background:var(--accent-cyan); transition:height 300ms cubic-bezier(0.16,1,0.3,1); z-index:-1;
}
.btn-accent-cyan:hover::before { height:100%; }
.btn-accent-cyan:hover { color:var(--bg-darker); }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 24px; }
.section-dark { background: var(--bg-darker); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 50px; }
.section-label {
    font-family: 'Archivo', sans-serif; font-size: 11px;
    font-weight: 400; letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent-red); margin-bottom: 12px;
    display: flex; align-items: center; gap: 12px;
}
.section-label::before {
    content: ''; width: 32px; height: 1px; background: var(--accent-red);
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 0.95; margin: 0;
}
.section-title-stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-cyan);
    text-stroke: 1px var(--accent-cyan);
}
.section-title-stroke-red, .stroke-red {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-red);
    text-stroke: 1px var(--accent-red);
}

/* ===== 3-COLUMN NAV GRID (Home) ===== */
.nav-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.nav-card {
    position: relative; overflow: hidden; height: 460px;
    border: 1px solid var(--border);
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center;
    padding: 36px 32px; cursor: pointer;
    transition: border-color 0.4s ease, transform 0.5s ease;
    background: var(--surface);
}
.nav-card-bg {
    position: absolute; inset: 0; z-index: 0;
}
.nav-card-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.5) contrast(1.1) brightness(0.3);
    transition: transform 0.6s ease, filter 0.6s ease;
}
.nav-card:hover .nav-card-bg img {
    transform: scale(1.05);
    filter: saturate(0.7) contrast(1.05) brightness(0.4);
}
.nav-card-grad {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.45) 50%, rgba(5,5,5,0.75) 100%);
}
.nav-card-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
}
.nav-card-icon {
    font-size: 28px; margin-bottom: 14px;
}
.nav-card-icon.red { color: var(--accent-red); text-shadow: 0 0 4px var(--accent-red-glow); }
.nav-card-icon.cyan { color: var(--accent-cyan); text-shadow: 0 0 4px var(--accent-cyan-glow); }
.nav-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1; margin-bottom: 10px;
}
.nav-card-title.red { color: var(--accent-red); text-shadow: 0 0 3px var(--accent-red-glow); }
.nav-card-title.cyan { color: var(--accent-cyan); text-shadow: 0 0 3px var(--accent-cyan-glow); }
.nav-card-desc {
    font-size: 13px; font-weight: 400; color: var(--text-muted); line-height: 1.5;
    margin-bottom: 18px; max-width: 320px;
}
.nav-card-link {
    font-family: 'Oswald', sans-serif; font-size: 12px;
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.3s ease;
}
.nav-card-link.red { color: var(--accent-red); }
.nav-card-link.cyan { color: var(--accent-cyan); }
.nav-card:hover .nav-card-link { gap: 14px; }
.nav-card:hover { border-color: rgba(193,18,31,0.2); }

/* ===== MENU PAGE — HERO ===== */
.menu-hero-section {
    position: relative; width: 100%; height: 60vh;
    min-height: 350px; max-height: 500px; overflow: hidden;
}
.menu-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
}
.menu-hero-title .stroke-red {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-red);
    text-stroke: 1px var(--accent-red);
}

/* ===== MENU TOP INFO BAR (inside content panel) ===== */
.menu-top-info {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-red);
    padding: 24px 28px;
    margin-bottom: 40px;
    background: var(--surface);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 24px;
}
.menu-top-info-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
}
.menu-top-info-brand span { color: var(--accent-red); }
.menu-top-info-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    white-space: nowrap;
}
.menu-top-info-phone i { margin-right: 6px; }
.menu-top-info-address {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.menu-top-info-address i { margin-right: 6px; color: var(--accent-red); }

/* ===== SIDEBAR NOTICES ===== */
.sidebar-notices {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.sidebar-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-muted);
}
.sidebar-notice i {
    font-size: 12px;
    color: var(--accent-red);
    margin-top: 2px;
    flex-shrink: 0;
}
.sidebar-notice strong {
    color: var(--text-main);
    font-weight: 500;
}

/* ===== DESKTOP MENU LAYOUT (≥1024px) ===== */
@media (min-width: 1024px) {
    .menu-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 48px;
        max-width: 1280px;
        margin: 0 auto;
        padding: 48px 32px 80px;
        align-items: start;
    }

    /* Sidebar */
    .menu-sidebar {
        position: sticky; top: 105px;
        display: flex; flex-direction: column;
        gap: 2px;
        padding: 0;
    }
    .menu-sidebar .menu-tab {
        display: flex; align-items: center; gap: 12px;
        padding: 12px 18px;
        font-family: 'Oswald', sans-serif;
        font-size: 12px; font-weight: 400;
        letter-spacing: 1.5px; text-transform: uppercase;
        background: transparent; border: none;
        border-left: 2px solid transparent;
        color: var(--text-muted); cursor: pointer;
        transition: all 0.25s ease;
        text-align: left; width: 100%;
        white-space: nowrap;
    }
    .menu-sidebar .menu-tab i {
        font-size: 14px; width: 20px; text-align: center;
    }
    .menu-sidebar .menu-tab:hover {
        background: rgba(255,255,255,0.03);
        color: var(--text-main);
    }
    .menu-sidebar .menu-tab.active {
        border-left-color: var(--tc, var(--accent-red));
        color: var(--tc, var(--accent-red));
        background: rgba(255,255,255,0.04);
    }

    /* Content panel */
    .menu-content {
        min-width: 0;
    }

    /* Category sections inside content — 2-column grid for items */
    .menu-section-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 36px;
    }

    /* Hide the horizontal tab bar on desktop */
    .menu-tab-bar {
        display: none !important;
    }

    /* Menu container inside content */
    .menu-content .menu-container {
        padding: 0;
        max-width: 100%;
    }
}

/* ===== MOBILE/TABLET TAB BAR (<1024px) ===== */
.menu-tab-bar {
    position: sticky; top: 85px; z-index: 99;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px;
}
.menu-tab-bar::-webkit-scrollbar { display: none; }

.menu-tab-bar .menu-tab {
    flex: 0 0 auto;
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px; font-weight: 400;
    letter-spacing: 1px; text-transform: uppercase;
    background: transparent; border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted); cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.menu-tab-bar .menu-tab i { font-size: 14px; }
.menu-tab-bar .menu-tab:hover { color: var(--text-main); }
.menu-tab-bar .menu-tab.active { color: var(--tc); border-bottom-color: var(--tc); }

/* ===== MENU CATEGORY TITLES ===== */
.category-title {
    font-family: 'Oswald', sans-serif; font-size: 20px;
    font-weight: 500;
    color: var(--sa, var(--accent-red));
    border-bottom: 1px solid var(--border);
    border-bottom-color: var(--sa, var(--border));
    padding-bottom: 10px; margin: 40px 0 20px;
    text-transform: uppercase; letter-spacing: 1px;
    display: flex; align-items: center; gap: 10px;
    text-shadow: 0 0 3px var(--sa-glow, var(--accent-red-glow)), 0 0 5px var(--sa-glow, var(--accent-red-glow));
}
.category-title i { font-size: 18px; color: var(--sa, var(--accent-red)); }

/* ===== MENU ITEMS with dot-leaders ===== */
.menu-item { margin-bottom: 16px; }
.menu-item-main {
    display: flex; justify-content: space-between; align-items: baseline;
}
.menu-item-name {
    font-family: 'Oswald', sans-serif; font-size: 15px;
    text-transform: uppercase; font-weight: 400; padding-right: 4px;
    flex-shrink: 0;
}
.menu-item-filler {
    flex-grow: 1;
    margin: 0 6px;
    border-bottom: 1px dotted;
    color: var(--sa, var(--accent-red));
    box-shadow: 0 0 2px var(--sa-glow, var(--accent-red-glow));
    opacity: 0.45;
    min-width: 20px;
    align-self: flex-end;
    margin-bottom: 3px;
}
.menu-item-price {
    font-family: 'Oswald', sans-serif; font-size: 15px;
    font-weight: 500;
    color: var(--sa, var(--accent-red));
    text-shadow: 0 0 2px var(--sa-glow, var(--accent-red-glow));
    white-space: nowrap; flex-shrink: 0;
}
.menu-item-name .num { font-weight: 500; margin-right: 4px; color: var(--sa, var(--accent-red)); }
.menu-item-desc {
    color: #aaa; font-size: 13px;
    margin-top: 3px; font-style: italic; font-weight: 400;
}

/* ===== GLUTEN-FREE BADGE ===== */
.menu-badge {
    background: var(--surface);
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 4px rgba(193,18,31,0.1), inset 0 0 4px rgba(193,18,31,0.02);
    padding: 20px; margin-top: 40px;
}
.menu-badge h3 {
    font-family: 'Oswald', sans-serif; margin: 0 0 8px;
    font-size: 16px; font-weight: 500; text-transform: uppercase;
    color: var(--accent-red);
}
.menu-badge p {
    color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.5;
}
.venue-info-bottom {
    text-align: center; margin-top: 40px;
    color: var(--text-muted); font-size: 11px;
    font-family: 'Oswald', sans-serif; font-weight: 400; letter-spacing: 2px;
}

/* ===== MENU GOLD/LUXURY THEME ===== */

/* Top sticky navigation bar */
.top-category-nav {
    background: rgba(10,10,10,0.95);
    border-bottom: 1px solid rgba(197,165,90,0.3);
    position: sticky; top: 0; z-index: 1000;
    display: flex; justify-content: flex-start;
    gap: 8px; padding: 12px 10px;
    overflow-x: auto; white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.top-category-nav::-webkit-scrollbar { height: 4px; }
.top-category-nav::-webkit-scrollbar-thumb { background: #C5A55A; border-radius: 2px; }

.nav-tab {
    color: #999; text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 0.9rem; letter-spacing: 1px;
    padding: 10px 18px; border-radius: 4px;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease, text-shadow 150ms ease;
    flex-shrink: 0;
    border: 1px solid transparent;
}
.nav-tab i { font-size: 1rem; }
.nav-tab:hover, .nav-tab.active {
    color: #C5A55A;
    background: rgba(197,165,90,0.1);
    text-shadow: 0 0 6px rgba(197,165,90,0.4);
    border-color: rgba(197,165,90,0.3);
}

/* Page border */
.page-border {
    border: 2px solid #C5A55A;
    margin: 15px; padding: 15px;
    position: relative;
}

/* Slogan */
.menu-slogan-bar {
    font-family: 'Marcellus', serif;
    color: #E8D5A3;
    word-spacing: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

/* Contact bar */
.menu-contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 20px;
    gap: 40px;
    font-size: 0.9rem;
}
.menu-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-contact-item i { color: #C5A55A; font-size: 1.2rem; }
.menu-contact-item h4 {
    font-family: 'Marcellus', serif;
    color: #fff; letter-spacing: 1px;
}
.menu-contact-item p { color: #b5b5b5; font-size: 0.8rem; }

/* Global notices */
.global-notices {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 20px auto 40px;
    padding: 15px;
    border: 1px dashed rgba(197,165,90,0.3);
    border-radius: 4px;
    background: rgba(15,15,15,0.6);
}
.notice-item {
    font-size: 0.85rem;
    color: #b5b5b5;
    text-align: center;
    max-width: 350px;
}
.notice-item strong {
    color: #C5A55A;
    font-family: 'Marcellus', serif;
    display: block;
    margin-bottom: 2px;
}

/* Menu wrapper */
.menu-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Sections */
.menu-section-gold {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}
.section-title-gold {
    font-family: 'Marcellus', serif;
    color: #C5A55A;
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 4px rgba(197,165,90,0.2);
    margin-bottom: 30px;
}

/* Vintage heart divider */
.vintage-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 600px;
}
.vintage-divider::before, .vintage-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #C5A55A 40%, #C5A55A);
}
.vintage-divider::after { background: linear-gradient(to left, transparent, #C5A55A 40%, #C5A55A); }
.vintage-center-icon {
    color: #C5A55A;
    padding: 0 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vintage-center-icon i {
    filter: drop-shadow(0 0 3px rgba(197,165,90,0.6));
}

/* 2-column items grid */
.items-grid-gold {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 30px;
}
.menu-item-gold { display: flex; flex-direction: column; }
.item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}
.item-name-gold {
    font-family: 'Marcellus', serif;
    color: #E8D5A3;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.item-dots-gold {
    flex: 1;
    border-bottom: 1px dotted rgba(232,213,163,0.35);
    margin: 0 15px;
    min-width: 16px;
}
.item-price-gold {
    font-family: 'Marcellus', serif;
    color: #E8D5A3;
    font-size: 1.3rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.item-ingredients-gold {
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
}

/* Floating booking button */
.floating-booking-btn {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #070707;
    color: #C5A55A;
    border: 2px solid #C5A55A;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 999;
    transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-booking-btn:active {
    transform: scale(0.97);
}
.floating-booking-btn:hover {
    background: #C5A55A;
    color: #070707;
    box-shadow: 0 0 15px #C5A55A;
}

/* Responsive */
@media (max-width: 868px) {
    .items-grid-gold { grid-template-columns: 1fr; row-gap: 25px; }
    .page-border { margin: 5px; padding: 10px; }
    .top-category-nav { padding: 10px 8px; gap: 6px; }
    .nav-tab { font-size: 0.8rem; padding: 8px 14px; gap: 6px; }
    .nav-tab i { font-size: 0.85rem; }
    .menu-contact-bar { gap: 20px; flex-direction: column; }
    .section-title-gold { font-size: 1.6rem; }
    .barnkalas-grid { grid-template-columns: 1fr !important; }
    .taco-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    .page-border { margin: 3px; padding: 8px; }
    .section-title-gold { font-size: 1.3rem; }
    .item-name-gold { font-size: 1.1rem; }
    .item-price-gold { font-size: 1.1rem; }
    .item-ingredients-gold { font-size: 0.85rem; }
    .floating-booking-btn { bottom: 15px; right: 15px; padding: 10px 18px; font-size: 0.8rem; }
    .top-category-nav { justify-content: flex-start; }
    .nav-tab { font-size: 0.75rem; padding: 8px 12px; }
    .barnkalas-grid { gap: 20px !important; }
    .taco-grid { gap: 20px !important; }
}

/* ===== STATISTICS ===== */
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px; text-align: center;
}
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--accent-red);
}
.stat-number.cyan { color: var(--accent-cyan); }
.stat-label {
    font-family: 'Oswald', sans-serif; font-size: 11px;
    font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); margin-top: 4px;
}

/* ===== QUOTE / CTA ===== */
.quote-section { padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
.quote-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; margin: 0;
}
.quote-divider { width: 60px; height: 1px; background: var(--accent-red); margin: 32px auto; }
.quote-sub {
    font-size: 13px; font-weight: 400; color: var(--text-muted);
    letter-spacing: 3px; text-transform: uppercase;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item i { color: var(--accent-cyan); font-size: 18px; margin-top: 4px; }
.contact-info-item h4 { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 4px; }
.contact-info-item p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ===== ACTIVITY CARDS ===== */
.activity-card {
    border: 1px solid var(--border); overflow: hidden;
    position: relative; transition: all 0.4s ease; background: var(--surface);
}
.activity-card:hover { border-color: var(--accent-cyan-dim); }
.activity-card-img { width: 100%; height: 240px; object-fit: cover; }
.activity-card-body { padding: 24px; }
.activity-card-icon { font-size: 24px; color: var(--accent-cyan); margin-bottom: 12px; }
.activity-card-title {
    font-family: 'Oswald', sans-serif; font-size: 18px;
    font-weight: 500; text-transform: uppercase; margin-bottom: 8px;
}
.activity-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px; background: var(--bg-darker);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 36px; }
.footer-brand-text { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 500; }
.footer-brand-sub {
    font-size: 10px; font-weight: 400; color: var(--text-muted);
    letter-spacing: 2px; text-transform: uppercase;
}
.footer-copy { font-size: 11px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); color: var(--text-muted);
    font-size: 13px; transition: all 0.3s ease;
}
.footer-socials a:hover { color: var(--accent-red); border-color: var(--accent-red); }

/* ===== GRAIN OVERLAY ===== */
.grain {
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none; opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.light-mode .grain { opacity: 0; }

/* ===== MAP ===== */
.map-container { position: relative; width: 100%; height: 450px; }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg-darker);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
    max-width: min(500px, 85vw); max-height: min(500px, 70vh); width: auto; height: auto;
    object-fit: contain;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 4px var(--accent-red-glow)); }
    50% { transform: scale(1.03); opacity: 0.9; filter: drop-shadow(0 0 8px var(--accent-red-glow)); }
}
.preloader-bar {
    width: 200px; height: 3px; background: var(--border);
    margin-top: 2.5rem; position: relative; overflow: hidden;
}
.preloader-bar::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--accent-red);
    animation: preloaderSlide 1.2s ease-in-out infinite;
}
@keyframes preloaderSlide {
    0% { left: -100%; } 50% { left: 0%; } 100% { left: 100%; }
}
.preloader-text {
    font-family: 'Oswald', sans-serif; font-size: 0.65rem;
    font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 1rem;
}

/* ===== SCROLL INDICATOR ===== */
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); } 60% { transform: translateY(3px); }
}
.scroll-indicator {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: var(--text-muted); opacity: 0.5; transition: opacity 0.4s ease; z-index: 999;
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }
.scroll-text {
    font-family: 'Oswald', sans-serif; font-size: 9px;
    font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
}
.scroll-indicator i { font-size: 12px; animation: scrollBounce 2s infinite; }

/* ===== VALUES (About) ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.value-card {
    border: 1px solid var(--border); padding: 36px 32px;
    position: relative; overflow: hidden;
    background: var(--surface); transition: border-color 0.4s ease;
}
.value-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0); transition: transform 0.5s ease;
}
.value-card:hover { border-color: var(--accent-cyan-dim); }
.value-card:hover::before { transform: scaleX(1); }
.value-card-icon { font-size: 32px; color: var(--accent-cyan); margin-bottom: 20px; }
.value-card-title {
    font-family: 'Oswald', sans-serif; font-size: 22px;
    font-weight: 500; margin: 0 0 14px; text-transform: uppercase;
}
.value-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== BOOKING MODAL ===== */
.booking-modal {
    display: none; position: fixed; inset: 0; z-index: 99998;
    align-items: center; justify-content: center; padding: 20px;
}
.booking-modal.active { display: flex; }
.booking-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); cursor: pointer;
}
.booking-modal-content {
    position: relative; width: 100%; max-width: 560px; max-height: 90vh;
    background: var(--surface); border: 1px solid rgba(193,18,31,0.2);
    border-radius: 12px; padding: 32px 24px 20px; overflow-y: auto;
    box-shadow: 0 0 12px rgba(193,18,31,0.08), 0 10px 40px rgba(0,0,0,0.4);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from { transform: translateY(30px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.booking-modal-close {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; color: var(--text-muted); font-size: 20px;
    cursor: pointer; border-radius: 50%; transition: color 0.3s ease;
}
.booking-modal-close:hover { color: var(--accent-red); background: rgba(193,18,31,0.08); }
.booking-modal-title {
    font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 16px; text-align: center;
    color: var(--text-main);
}
.booking-form-container { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
.booking-form-container iframe { display: block; }
.booking-modal-footer {
    font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 1px;
    text-align: center; color: var(--text-muted); margin-top: 12px;
}

/* Web3Forms */
.w3f-form { padding: 8px 0; }
.w3f-row { margin-bottom: 14px; }
.w3f-label { display: block; font-family: 'Oswald',sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #C5A55A; margin-bottom: 5px; }
.w3f-input, .w3f-select, .w3f-textarea {
    width: 100%; padding: 10px 14px; font-family: 'Marcellus',serif; font-size: 14px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(197,165,90,0.15);
    border-radius: 6px; color: #e0e0e0; outline: none; transition: border-color 0.3s;
    box-sizing: border-box;
}
.w3f-input:focus, .w3f-select:focus, .w3f-textarea:focus { border-color: #C5A55A; }
.w3f-textarea { min-height: 100px; resize: vertical; }
.w3f-select { appearance: none; cursor: pointer; }
.w3f-select option { background: #1a1a1a; color: #e0e0e0; padding: 8px 14px; }
.w3f-row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.w3f-submit {
    width: 100%; padding: 12px; font-family: 'Oswald',sans-serif; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase; border: 1px solid #C5A55A;
    background: transparent; color: #C5A55A; border-radius: 6px; cursor: pointer;
    transition: all 0.3s; margin-top: 4px;
}
.w3f-submit:hover { background: #C5A55A; color: #0a0a0a; }
.w3f-success { text-align: center; padding: 30px 20px; color: #C5A55A; font-family: 'Marcellus',serif; }
.w3f-success i { font-size: 40px; margin-bottom: 12px; display: block; }
.w3f-success p { font-size: 15px; margin: 8px 0 0; color: #ccc; }
@media (max-width: 500px) { .w3f-row-inline { grid-template-columns: 1fr; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
    .menu-sidebar { display: none !important; }
    .menu-layout {
        display: block;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px 80px;
    }
    .menu-content .menu-container {
        padding: 0;
    }
    .menu-top-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 8px;
    }
    .menu-top-info-brand { font-size: 16px; }
    .menu-top-info-phone { font-size: 13px; }
}

@media (max-width: 900px) {
    .nav-grid { grid-template-columns: 1fr; }
    .nav-card { height: 340px; }
    .menu-section-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-toggles { display: flex; }
    .mobile-menu-btn { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .mobile-nav a { font-size: 2rem; line-height: 1.2; }
    .nav-container { height: 65px; padding: 0 12px; }
    .logo-link img { height: 40px !important; width: auto; }
    .logo-link .neon-stroke { font-size: 18px !important; }
    .logo-link .neon-stroke-sub { font-size: 10px !important; letter-spacing: 3px !important; margin-top: 0px !important; }
    .toggle-btn { width: 32px; height: 32px; font-size: 12px; }
    .lang-toggle { padding: 0 6px; font-size: 10px; }
    .mobile-toggles { gap: 0.6rem; }
    .mobile-toggles .toggle-btn { width: 44px; height: 44px; }
    .menu-tab-bar { top: 65px; }
    .menu-tab-bar .menu-tab { padding: 10px 12px; font-size: 11px; }
    .menu-tab-bar .menu-tab i { font-size: 12px; }
    .map-container { height: 300px; }
}

@media (max-width: 420px) {
    .nav-container { height: 56px; padding: 0 10px; }
    .logo-link img { height: 34px !important; }
    .logo-link .neon-stroke { font-size: 15px !important; }
    .logo-link .neon-stroke-sub { display: none !important; }
    .toggle-btn { width: 28px; height: 28px; font-size: 11px; }
    .lang-toggle { padding: 0 4px; font-size: 9px; }
    .mobile-toggles .toggle-btn { width: 40px; height: 40px; }
    .menu-tab-bar { top: 56px; }
    .menu-tab-bar .menu-tab { padding: 8px 10px; font-size: 10px; gap: 4px; }
    .menu-tab-bar .menu-tab i { font-size: 10px; }
}

/* ===== DESKTOP MENU HERO (≥1024px) ===== */
@media (min-width: 1024px) {
    .menu-hero-title {
        font-size: clamp(4rem, 8vw, 7rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    @keyframes vhsLines { 0% { opacity: 0; } 100% { opacity: 0; } }
    @keyframes vhsGlitch { 0% { opacity: 0; } 100% { opacity: 0; } }
    @keyframes vhsTape { 0% { opacity: 0.04; } 100% { opacity: 0.04; } }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== LUXURY DESIGN ENHANCEMENTS v2 ===== */

/* SCROLL REVEAL - optimized for performance & natural feel */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.8s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.9s; }

/* GOLD DECORATIVE ELEMENTS */
.gold-corner {
    position: relative;
}
.gold-corner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border-top: 2px solid #C5A55A;
    border-left: 2px solid #C5A55A;
    opacity: 0.6;
    pointer-events: none;
}
.gold-corner::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 40px;
    border-bottom: 2px solid #C5A55A;
    border-right: 2px solid #C5A55A;
    opacity: 0.6;
    pointer-events: none;
}

.gold-divider-thick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 50px auto;
    max-width: 500px;
}
.gold-divider-thick::before,
.gold-divider-thick::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #C5A55A 30%, #C5A55A 70%, transparent);
}
.gold-divider-thick .divider-diamond {
    width: 10px;
    height: 10px;
    background: #C5A55A;
    transform: rotate(45deg);
    opacity: 0.7;
    flex-shrink: 0;
}

.gold-rule {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197,165,90,0.4) 20%, rgba(197,165,90,0.6) 50%, rgba(197,165,90,0.4) 80%, transparent);
    margin: 30px 0;
    border: none;
}

/* HERO ENHANCEMENTS */
.hero-parallax-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-gold-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #C5A55A 20%, #C5A55A 80%, transparent);
    z-index: 5;
}

.hero-title-cinzel {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #E8D5A3;
    text-shadow: 0 0 10px rgba(197,165,90,0.2), 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title-cinzel .gold-highlight {
    color: #C5A55A;
    display: block;
    font-size: clamp(1.8rem, 5vw, 4rem);
    letter-spacing: 8px;
    margin-top: 5px;
}

/* ENHANCED BUTTONS */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #C5A55A;
    background: transparent;
    border: 1px solid rgba(197,165,90,0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 200ms ease;
}
.btn-gold:active {
    transform: scale(0.97);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197,165,90,0.1), transparent);
    transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-gold:hover::before {
    left: 100%;
}
.btn-gold:hover {
    border-color: #C5A55A;
    color: #E8D5A3;
    box-shadow: 0 0 20px rgba(197,165,90,0.15), inset 0 0 20px rgba(197,165,90,0.05);
    transform: translateY(-1px);
}
.btn-gold-solid:hover {
    background: rgba(197,165,90,0.2);
    box-shadow: 0 0 25px rgba(197,165,90,0.2);
}

.btn-gold i {
    transition: transform 200ms ease;
}
.btn-gold:hover i {
    transform: translateX(3px);
}

/* ENHANCED ACTIVITY CARDS */
.activity-card-enhanced {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(197,165,90,0.15);
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.activity-card-enhanced:hover {
    border-color: rgba(197,165,90,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(197,165,90,0.05);
}
.activity-card-enhanced .activity-card-img {
    transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.activity-card-enhanced:hover .activity-card-img {
    transform: scale(1.05);
}
.activity-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #C5A55A, transparent);
    opacity: 0;
    transition: opacity 200ms ease;
}
.activity-card-enhanced:hover .activity-card-glow {
    opacity: 1;
}

/* ENHANCED NAV CARDS (Home page) */
.nav-card-enhanced {
    border: 2px solid rgba(197,165,90,0.15);
    background: #0a0a0a;
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-card-enhanced:hover {
    border-color: #C5A55A;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 40px rgba(197,165,90,0.2), 0 0 20px rgba(197,165,90,0.1);
}
.nav-card-enhanced .nav-card-bg img {
    transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.4) contrast(1.1) brightness(0.35);
}
.nav-card-enhanced:hover .nav-card-bg img {
    transform: scale(1.08);
    filter: saturate(0.6) contrast(1.05) brightness(0.45);
}
.nav-card-enhanced .nav-card-grad {
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
}
.nav-card-enhanced .btn-gold-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #C5A55A;
    color: #C5A55A;
    font-family: 'Marcellus', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms ease;
}
.nav-card-enhanced .btn-gold-card:hover {
    background: #C5A55A;
    color: #0a0a0a;
    box-shadow: 0 0 15px rgba(197,165,90,0.3);
}
.nav-card-enhanced .btn-gold-card:active {
    transform: scale(0.97);
}

/* GOLD BORDER GLOW ANIMATION */
@keyframes goldBorderPulse {
    0%, 100% { border-color: rgba(197,165,90,0.3); box-shadow: 0 0 8px rgba(197,165,90,0.05); }
    50% { border-color: rgba(197,165,90,0.6); box-shadow: 0 0 16px rgba(197,165,90,0.1); }
}
.gold-border-pulse {
    animation: goldBorderPulse 3s ease-in-out infinite;
}

/* SUBTLE GOLD NOISE OVERLAY */
.gold-noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* TEXT REVEAL KEYFRAME */
@keyframes textReveal {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}
.text-reveal {
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    white-space: nowrap;
}

/* FLOATING GOLD PARTICLES (decorative) */
@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}
.gold-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #C5A55A;
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 8s ease-in-out infinite;
}
.gold-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.gold-particle:nth-child(2) { left: 30%; animation-delay: 2s; animation-duration: 9s; }
.gold-particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 8s; }
.gold-particle:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 10s; }
.gold-particle:nth-child(5) { left: 90%; animation-delay: 3s; animation-duration: 7.5s; }
.gold-particle:nth-child(6) { left: 20%; animation-delay: 5s; animation-duration: 8.5s; }
.gold-particle:nth-child(7) { left: 60%; animation-delay: 6s; animation-duration: 9.5s; }
.gold-particle:nth-child(8) { left: 80%; animation-delay: 0.5s; animation-duration: 7.2s; }

/* SECTION WITH GOLD TOP ACCENT */
.section-gold-accent {
    position: relative;
    padding-top: 60px;
}
.section-gold-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #C5A55A;
}

/* CONTACT FORM IMPROVEMENTS */
.contact-form-gold input,
.contact-form-gold textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197,165,90,0.2);
    color: #E8D5A3;
    padding: 14px 18px;
    font-family: 'Marcellus', serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}
.contact-form-gold input:focus,
.contact-form-gold textarea:focus {
    border-color: #C5A55A;
    outline: none;
    box-shadow: 0 0 15px rgba(197,165,90,0.1);
    background: rgba(255,255,255,0.05);
}
.contact-form-gold input::placeholder,
.contact-form-gold textarea::placeholder {
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

/* STATS GOLD VERSION */
.stats-gold .stat-number {
    color: #C5A55A;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(197,165,90,0.15);
}
.stats-gold .stat-label {
    font-family: 'Marcellus', serif;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
}

/* VALUE CARDS GOLD */
.value-card-gold {
    border-color: rgba(197,165,90,0.1);
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.value-card-gold::before {
    background: linear-gradient(90deg, transparent, #C5A55A, transparent);
}
.value-card-gold:hover {
    border-color: rgba(197,165,90,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.value-card-gold .value-card-icon {
    color: #C5A55A;
}
.value-card-gold .value-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 400;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .hero-title-cinzel {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    .hero-title-cinzel .gold-highlight {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
    }
    .btn-gold {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
    .gold-corner::before,
    .gold-corner::after {
        width: 25px;
        height: 25px;
    }
    .gold-particle { display: none; }
}
