/* ══════════════════════════════════════════════════════
   DUNKEN — Shared Styles
   Dark / Light theme via [data-theme] on <html>
   ══════════════════════════════════════════════════════ */

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

/* ─── THEME VARIABLES ─── */
:root {
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a07c2a;
    --transition: 0.4s ease;
}

[data-theme="dark"] {
    --bg-primary: #222222;
    --bg-secondary: #2a2a2a;
    --bg-card: #2e2e2e;
    --bg-card-hover: #353535;
    --text-primary: #f0ebe3;
    --text-secondary: #8a8278;
    --text-muted: #5a5550;
    --accent-purple: rgba(42, 26, 62, 0.3);
    --accent-amber: rgba(26, 20, 8, 0.5);
    --overlay: rgba(10, 10, 10, 0.92);
    --border-subtle: rgba(201, 168, 76, 0.08);
    --border-medium: rgba(201, 168, 76, 0.15);
    --glass: rgba(255,255,255,0.05);
}

[data-theme="light"] {
    --bg-primary: #f5f0e8;
    --bg-secondary: #ebe5da;
    --bg-card: #ffffff;
    --bg-card-hover: #f9f6f0;
    --text-primary: #1a1610;
    --text-secondary: #6b6358;
    --text-muted: #9a9288;
    --accent-purple: rgba(42, 26, 62, 0.06);
    --accent-amber: rgba(26, 20, 8, 0.06);
    --overlay: rgba(245, 240, 232, 0.95);
    --border-subtle: rgba(160, 124, 42, 0.12);
    --border-medium: rgba(160, 124, 42, 0.25);
    --glass: rgba(0,0,0,0.03);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    transition: background var(--transition), color var(--transition);
}
a, button, input, select, textarea { cursor: none; }

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10001;
    transition: width 0.05s linear;
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}
.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--gold-light);
}
.cursor-ring.hover {
    width: 50px;
    height: 50px;
    opacity: 0.2;
    border-color: var(--gold-light);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body, a, button, input, select, textarea { cursor: auto; }
}

/* ─── LOADING SCREEN ─── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-hookah { color: var(--gold); }
.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s ease infinite;
}
.loader-bar {
    width: 100px;
    height: 2px;
    background: var(--border-subtle);
    border-radius: 1px;
    overflow: hidden;
}
.loader-bar-fill {
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: loadBar 1.2s ease infinite;
}
@keyframes loadBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition);
    background: transparent;
}
.nav.scrolled {
    background: var(--overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    border-bottom: 1px solid var(--border-subtle);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.5rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-primary) !important;
}
.nav-cta::after { display: none !important; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ─── THEME TOGGLE ─── */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-medium);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    padding: 0;
}
.theme-toggle:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}
[data-theme="dark"] .theme-icon.sun { display: none; }
[data-theme="dark"] .theme-icon.moon { display: block; }
[data-theme="light"] .theme-icon.sun { display: block; }
[data-theme="light"] .theme-icon.moon { display: none; }

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, var(--accent-purple) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, var(--accent-amber) 0%, transparent 50%),
        var(--bg-primary);
    transition: background var(--transition);
}
#smoke-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

/* ── SMOKE SWEEP: handled by canvas JS ── */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s infinite ease-in-out;
}
@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.5; }
    80% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

/* ─── HOOKAH (PNG + SVG overlay) ─── */
.hero-hookah {
    position: relative;
    display: inline-block;
    margin: 0 auto 1rem;
    overflow: visible;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}
.hookah-img {
    display: block;
    width: 150px;
    height: auto;
    /* brightness(0) guarantees clean black silhouette before colorising */
    filter: contrast(1.4) brightness(0) invert(1) sepia(1) saturate(3.5) hue-rotate(3deg)
            brightness(0.82) drop-shadow(0 0 22px rgba(201,168,76,0.35));
}
[data-theme="light"] .hookah-img {
    filter: contrast(1.4) brightness(0) invert(1) sepia(1) saturate(2.5) hue-rotate(3deg)
            brightness(0.62) drop-shadow(0 0 12px rgba(160,124,42,0.25));
}
.hookah-overlay-svg {
    /* Overlays exactly on top of the PNG; viewBox=784x980 matches image dimensions */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

/* ─── LOADER HOOKAH ─── */
.loader-hookah-wrap {
    margin-bottom: 0.25rem;
}
.loader-hookah-img {
    width: 52px;
    height: auto;
    filter: contrast(1.4) brightness(0) invert(1) sepia(1) saturate(3.5) hue-rotate(3deg)
            brightness(0.82) drop-shadow(0 0 8px rgba(201,168,76,0.3));
    animation: loaderFloat 3s ease-in-out infinite;
}
@keyframes loaderFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}
.hero-logo-img {
    max-width: 480px;
    width: 75vw;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.15));
}
[data-theme="light"] .hero-logo-img {
    filter: drop-shadow(0 0 20px rgba(160, 124, 42, 0.1)) brightness(0.85) contrast(1.1);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease 0.9s forwards, goldShift 6s ease infinite;
    opacity: 0;
    line-height: 1;
    margin-bottom: 1.5rem;
}
@keyframes goldShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}
.hero-cta-group {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
}
.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ─── BUTTONS ─── */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0a;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

/* ─── SECTION COMMON ─── */
.section {
    padding: 8rem 3rem;
    position: relative;
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.section-line { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto 0; }
.container { max-width: 1200px; margin: 0 auto; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── ABOUT ─── */
#about {
    background: radial-gradient(ellipse at 0% 50%, var(--accent-purple) 0%, transparent 50%), var(--bg-primary);
    transition: background var(--transition);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}
.about-visual-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Subtle gold vignette overlay on top of photo */
.about-visual-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(34,34,34,0.45) 0%, transparent 40%),
        linear-gradient(to right, rgba(34,34,34,0.15) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
    transition: background var(--transition);
}
[data-theme="light"] .about-visual-inner::after {
    background:
        linear-gradient(to top, rgba(245,240,232,0.35) 0%, transparent 40%),
        linear-gradient(to right, rgba(245,240,232,0.1) 0%, transparent 30%);
}
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}
.about-visual:hover .about-photo {
    transform: scale(1.04);
}
.about-border-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}
.about-border-accent-2 {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}
.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.about-text h3 span { color: var(--gold); }
.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
}
.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.about-stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ─── ATMOSPHERE SCROLLER ─── */
.atmosphere {
    padding: 5rem 0;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: background var(--transition);
}
.atmosphere-track {
    display: flex;
    gap: 1rem;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
}
.atmosphere-track:hover { animation-play-state: paused; }
.atm-card {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}
.atm-card:hover {
    border-color: var(--border-medium);
    transform: scale(1.02);
}
.atm-card-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    padding: 1.5rem;
}
@keyframes scrollTrack { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── DIVIDER QUOTE ─── */
.divider-quote {
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.divider-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%), var(--bg-secondary);
    transition: background var(--transition);
}
.divider-quote blockquote {
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}
.quote-mark {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.5;
    display: block;
    margin-bottom: 1rem;
}

/* ─── EVENTS ─── */
#events {
    background: radial-gradient(ellipse at 50% 100%, var(--accent-purple) 0%, transparent 50%), var(--bg-secondary);
    transition: background var(--transition);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-medium);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.event-card:hover::before { opacity: 1; }
.event-card-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.event-gradient-1 { background: linear-gradient(135deg, #1a0a2e, #16213e, var(--bg-primary)); }
.event-gradient-2 { background: linear-gradient(135deg, #1a1408, #2a1a0a, var(--bg-primary)); }
.event-gradient-3 { background: linear-gradient(135deg, #0a1a0a, #1a2a1a, var(--bg-primary)); }
[data-theme="light"] .event-gradient-1 { background: linear-gradient(135deg, #e8e0f0, #dde4f0, var(--bg-card)); }
[data-theme="light"] .event-gradient-2 { background: linear-gradient(135deg, #f0ead8, #f0e4d0, var(--bg-card)); }
[data-theme="light"] .event-gradient-3 { background: linear-gradient(135deg, #ddf0dd, #e0f0e0, var(--bg-card)); }
.event-card-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--overlay);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-medium);
}
.event-date-badge span { display: block; text-align: center; }
.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.event-month {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.event-card-body { padding: 2rem; }
.event-category {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.event-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.event-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* ─── GALLERY SCROLLER (below events) ─── */
.gallery-scroller {
    padding: 3rem 0;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: background var(--transition);
}
.gallery-scroller-track {
    display: flex;
    gap: 0.8rem;
    animation: scrollTrack 35s linear infinite;
    width: max-content;
}
.gallery-scroller-track:hover { animation-play-state: paused; }
.gallery-scroller-item {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    display: block;
    cursor: pointer;
}
.gallery-scroller-item:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
}
.gallery-scroller-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.gallery-scroller-item:hover .gallery-scroller-img {
    transform: scale(1.1);
}

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
    background: none;
    border: 1px solid var(--border-medium);
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}
.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── FORM NOTE ─── */
.form-note {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ─── RESERVATION ─── */
#reservation {
    background:
        radial-gradient(ellipse at 30% 50%, var(--accent-purple) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, var(--accent-amber) 0%, transparent 50%),
        var(--bg-primary);
    transition: background var(--transition);
}
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.reservation-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.reservation-info p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}
.hours-list .day { color: var(--text-secondary); font-weight: 300; }
.hours-list .time { color: var(--text-primary); font-weight: 500; }
.hours-list .highlight .day,
.hours-list .highlight .time { color: var(--gold); }

.reservation-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    transition: background var(--transition), border-color var(--transition);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.9rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease, background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg-primary); }
.form-submit { width: 100%; margin-top: 1rem; }

/* ─── WEBMASTER CREDIT — DARK MODE ─── */
[data-theme="dark"] .webmaster-credit { opacity: 0.65 !important; }
[data-theme="dark"] .webmaster-credit a { color: var(--text-secondary) !important; }

/* ─── DATE PICKER ICON — DARK MODE ─── */
[data-theme="dark"] .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.75;
    cursor: pointer;
}

/* ─── MENU PAGE SPECIFICS ─── */
.menu-page-header {
    padding-top: 8rem;
    text-align: center;
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.menu-tab {
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-secondary);
    padding: 0.7rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s ease;
}
.menu-tab:hover, .menu-tab.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}
.menu-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border-subtle);
}
.menu-grid.active { display: grid; }
.menu-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding: 2rem;
    transition: all 0.3s ease;
}
.menu-item:hover { background: var(--bg-card); }
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}
.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
}
.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}
.menu-item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}
.menu-item-tags { display: flex; gap: 0.5rem; margin-top: 0.8rem; flex-wrap: wrap; }
.menu-tag {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--border-subtle);
}

.menu-item-preview {
    display: none;
}

/* ── Hover tooltip karta ── */
.menu-tooltip {
    position: fixed;
    z-index: 9999;
    width: 290px;
    background: var(--bg-card, #1a1510);
    border: 1px solid var(--gold, #c9a84c);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.15);
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.menu-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.menu-tooltip-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
}
.menu-tooltip-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.45));
}
.menu-tooltip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.menu-tooltip-body {
    padding: 0.9rem 1.1rem 1rem;
}
.menu-tooltip-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.menu-tooltip-desc {
    font-size: 0.8rem;
    color: var(--text-muted, #a0957a);
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

.menu-section-title {
    grid-column: 1 / -1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 2rem 2rem 0.6rem;
    border-bottom: 1px solid var(--border-subtle);
    opacity: 0.85;
    background: var(--bg-primary);
}
.menu-section-title:first-child { padding-top: 0; }
.menu-note {
    grid-column: 1 / -1;
    font-size: 0.73rem;
    color: var(--text-muted);
    padding: 0.6rem 2rem 0;
    font-style: italic;
    background: var(--bg-primary);
}

/* ─── GALLERY PAGE ─── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: all 0.4s ease;
}
.gallery-item:hover { z-index: 2; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-inner { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
.gi-1 { background: linear-gradient(135deg, #1a0a2e, #2a1a3e); }
.gi-2 { background: linear-gradient(135deg, #1a1408, #2a2010); }
.gi-3 { background: linear-gradient(135deg, #0a1520, #1a2530); }
.gi-4 { background: linear-gradient(135deg, #1a0f0a, #2a1510); }
.gi-5 { background: linear-gradient(135deg, #0f1a0a, #1a2a10); }
.gi-6 { background: linear-gradient(135deg, #1a1020, #2a1a30); }
[data-theme="light"] .gi-1 { background: linear-gradient(135deg, #e8e0f0, #d8d0e0); }
[data-theme="light"] .gi-2 { background: linear-gradient(135deg, #f0ead8, #e0dac8); }
[data-theme="light"] .gi-3 { background: linear-gradient(135deg, #d8e8f0, #c8d8e0); }
[data-theme="light"] .gi-4 { background: linear-gradient(135deg, #f0e0d8, #e0d0c8); }
[data-theme="light"] .gi-5 { background: linear-gradient(135deg, #ddf0dd, #cde0cd); }
[data-theme="light"] .gi-6 { background: linear-gradient(135deg, #e8ddf0, #d8cde0); }
.gallery-inner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-inner-content svg { opacity: 0.12; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-overlay-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
}
.gallery-play-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(201, 168, 76, 0.1);
}
.gallery-play-btn:hover {
    background: var(--gold);
}
.gallery-play-btn svg { margin-left: 3px; }
.gallery-play-btn:hover svg { stroke: var(--bg-primary); }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.lightbox-close:hover { background: var(--gold); color: #0a0a0a; }
.lightbox-content {
    max-width: 900px;
    width: 90%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.lightbox-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.lightbox-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.lightbox-nav:hover { background: var(--gold); color: #0a0a0a; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ─── FOOTER ─── */
#contact {
    background: var(--bg-secondary);
    padding: 6rem 3rem 3rem;
    transition: background var(--transition);
}
.contact-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.contact-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 6px;
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}
.contact-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 300px;
}
.contact-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}
.contact-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.contact-col ul { list-style: none; }
.contact-col li { margin-bottom: 0.8rem; }
.contact-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s ease;
}
.contact-col a:hover { color: var(--gold); }
.contact-detail {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
}
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.75rem; font-weight: 300; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--gold); }

/* ─── PAGE HEADER (for sub-pages) ─── */
.page-hero {
    padding: 10rem 3rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        var(--bg-primary);
    transition: background var(--transition);
}
.page-hero .section-header { position: relative; margin-bottom: 0; }
.page-breadcrumb {
    position: relative;
    margin-top: 1rem;
}
.page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span { color: var(--text-muted); font-size: 0.75rem; margin: 0 0.5rem; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */

/* ── Tablet (1024px) ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-height: 400px; }
    .reservation-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-top { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
    .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
    #contact { padding: 5rem 2rem 2.5rem; }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
    .section { padding: 5rem 1.5rem; }
    .section-header { margin-bottom: 3rem; }
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.6rem 1.5rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: var(--overlay);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-subtle);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-cta-group { flex-direction: column; align-items: center; gap: 1rem; }
    .hero-tagline { letter-spacing: 4px; font-size: 0.78rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .hero-title { letter-spacing: 6px; }
    .hookah-img { width: 120px; }

    /* About */
    .about-text h3 { font-size: 1.4rem; }
    .about-stats { gap: 1.5rem; }

    /* Atmosphere */
    .atm-card { width: 210px; height: 135px; }
    .atm-card-text { font-size: 1.05rem; }

    /* Events */
    .events-grid { grid-template-columns: 1fr; }
    .event-card-body { padding: 1.5rem; }
    .event-card-body h3 { font-size: 1.15rem; }

    /* Gallery scroller */
    .gallery-scroller-item { width: 160px; height: 110px; }

    /* Reservation — hide info panel on mobile, form only */
    .reservation-info { display: none; }
    .reservation-grid { grid-template-columns: 1fr; gap: 0; }
    .form-row { grid-template-columns: 1fr; }
    .reservation-form { padding: 2rem 1.5rem; }

    /* Gallery page */
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .page-hero { padding: 8rem 1.5rem 3rem; }

    /* Map */
    #location iframe { height: 320px !important; }

    /* Footer */
    .contact-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    /* Lightbox */
    .lightbox-close { top: 1rem; right: 1rem; width: 42px; height: 42px; font-size: 1.2rem; }
    .lightbox-prev { left: 0.5rem; width: 42px; height: 42px; }
    .lightbox-next { right: 0.5rem; width: 42px; height: 42px; }

    /* Cookie banner — stack vertically */
    #cookie-banner > div { flex-direction: column !important; text-align: center !important; }

    /* Menu page */
    .menu-grid { grid-template-columns: 1fr; }
}

/* ── Small phones (480px) ── */
@media (max-width: 480px) {
    .section { padding: 3.5rem 1rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-label { font-size: 0.7rem; letter-spacing: 4px; }
    .nav { padding: 0.8rem 1rem; }
    .nav.scrolled { padding: 0.5rem 1rem; }
    .nav-logo { font-size: 1.3rem; letter-spacing: 3px; }

    /* Hero */
    .hero-content { padding: 1.5rem 0.75rem; }
    .hero-tagline { letter-spacing: 3px; font-size: 0.68rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 0.88rem; letter-spacing: 1px; }
    .hero-title { letter-spacing: 4px; margin-bottom: 1rem; }
    .hero-logo-img { max-width: 260px; width: 70vw; }
    .hero-cta-group { margin-top: 1.5rem; }
    .hero-scroll-indicator { bottom: 1rem; }
    .hookah-img { width: 95px; }

    /* Buttons — full width on small screens */
    .btn-primary, .btn-outline {
        padding: 0.85rem 1.8rem;
        font-size: 0.7rem;
        letter-spacing: 2px;
        width: 100%;
        text-align: center;
    }

    /* About */
    .about-grid { gap: 2rem; }
    .about-visual { max-height: 280px; }
    .about-text h3 { font-size: 1.2rem; }
    .about-text p { font-size: 0.88rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
    .about-stat-number { font-size: 1.8rem; }
    .about-stat-label { font-size: 0.6rem; }
    .about-border-accent, .about-border-accent-2 { display: none; }

    /* Atmosphere */
    .atmosphere { padding: 3rem 0; }
    .atm-card { width: 170px; height: 110px; }
    .atm-card-text { font-size: 0.92rem; padding: 1rem; }

    /* Events */
    .event-card-visual { height: 160px; }
    .event-card-body { padding: 1.25rem; }
    .event-card-body h3 { font-size: 1rem; }
    .event-card-body p { font-size: 0.82rem; }
    .event-date-badge { padding: 0.4rem 0.7rem; }
    .event-day { font-size: 1.2rem; }

    /* Gallery scroller */
    .gallery-scroller { padding: 2rem 0; }
    .gallery-scroller-item { width: 140px; height: 100px; }

    /* Reservation */
    .reservation-form { padding: 1.5rem 1rem; border: none; }
    .form-group { margin-bottom: 0.75rem; }
    .form-group label { font-size: 0.65rem; letter-spacing: 1.5px; }
    .form-group input, .form-group select, .form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 4px;
    }
    .form-group textarea { min-height: 80px; }
    .form-submit { padding: 1rem; font-size: 0.78rem; }

    /* Gallery page */
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .gallery-item.tall, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
    .page-hero { padding: 7rem 1rem 2rem; }

    /* Map */
    #location iframe { height: 280px !important; }

    /* Game */
    .game-description { font-size: 0.88rem; }
    .game-promo-note { font-size: 0.72rem; }

    /* Menu page */
    .menu-tabs { gap: 0.5rem; margin-bottom: 2.5rem; }
    .menu-tab { padding: 0.6rem 1.2rem; font-size: 0.68rem; letter-spacing: 1px; }
    .menu-item { padding: 1.5rem 1rem; }
    .menu-item-name { font-size: 1rem; }
    .menu-item-price { font-size: 1rem; }
    .menu-section-title { padding: 1.5rem 1rem 0.5rem; font-size: 0.62rem; }
    .menu-note { padding: 0.5rem 1rem 0; }

    /* Footer */
    .contact-top { grid-template-columns: 1fr; gap: 1.5rem; }
    #contact { padding: 3rem 1rem 1.5rem; }
    .contact-brand .footer-logo { font-size: 1.6rem; letter-spacing: 4px; }
    .contact-brand p { font-size: 0.8rem; }
    .contact-col h4 { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .contact-detail { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .contact-col a { font-size: 0.8rem; }
    .contact-col li { margin-bottom: 0.5rem; }
    .footer-legal { flex-direction: column; gap: 0.5rem; }
    .footer-legal a { font-size: 0.7rem; }
    .footer-bottom p { font-size: 0.7rem; }

    /* Lightbox */
    .lightbox-content { width: 96%; }
    .lightbox-close { top: 0.5rem; right: 0.5rem; width: 36px; height: 36px; font-size: 1rem; }
    .lightbox-prev { left: 0.3rem; width: 36px; height: 36px; }
    .lightbox-next { right: 0.3rem; width: 36px; height: 36px; }
}

/* ── Very small phones: iPhone SE, 320–360px ── */
@media (max-width: 360px) {
    .section { padding: 3rem 0.75rem; }
    .nav-logo { font-size: 1.1rem; letter-spacing: 2px; }
    #contact { padding: 2.5rem 0.75rem 1.5rem; }
    .hero-logo-img { max-width: 200px; }
    .hero-tagline { font-size: 0.6rem; letter-spacing: 2px; }
    .hero-content { padding: 1rem 0.5rem; }
    .hookah-img { width: 80px; }
    .game-wrapper { height: 440px; }
    .menu-tab { padding: 0.5rem 0.8rem; font-size: 0.6rem; }
    .atm-card { width: 145px; height: 90px; }
    .atm-card-text { font-size: 0.85rem; }
    .about-stats { grid-template-columns: 1fr; }
}

/* ── Safe area insets for notched phones ── */
@supports (padding: env(safe-area-inset-bottom)) {
    .nav { padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
    #contact { padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
    #cookie-banner { padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important; }
}

/* ── Landscape phone: prevent hero from being too tall ── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 5rem 2rem 3rem; }
    .hookah-img { width: 70px; }
    .hero-tagline { margin-bottom: 0.5rem; }
    .hero-cta-group { margin-top: 1rem; flex-direction: row; }
    .btn-primary, .btn-outline { width: auto; }
}
/* ═══════════════════ GAME SECTION ═══════════════════ */
.game-section {
    background: var(--bg-secondary);
}

.game-description {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}

/* Promo poznámka nad hrou — nevýrazný text */
.game-promo-note {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
    opacity: 0.55;
}
.game-promo-note strong {
    font-weight: 500;
    color: var(--gold);
    opacity: 1;
}

.game-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    background: #06040a;
    /* Vyšší a širší — hra se renderuje v plné velikosti (SCALE=1) */
    height: 660px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 560px) {
    .game-wrapper {
        height: 540px;
        max-width: 100%;
        border-radius: 12px;
    }
}
@media (max-width: 480px) {
    .game-wrapper {
        height: 480px;
        border-radius: 10px;
    }
}
@media (max-width: 360px) {
    .game-wrapper {
        height: 440px;
    }
}
