/* ============================================================
   AHOY ASIA — Premium Dark Restaurant CSS
   Colors: Dark bg #1a1a1a, Cream #F5E6C8, Red #C0392B, Gold #D4AF37
   ============================================================ */

/* ---- FONTS & RESET ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #232323;
    --dark-4: #2d2d2d;
    --cream: #F5E6C8;
    --cream-dim: #c9b895;
    --red: #C0392B;
    --red-light: #E74C3C;
    --gold: #D4AF37;
    --gold-dim: #a88a28;
    --white: #ffffff;
    --grey: #888;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    --font-script: 'Dancing Script', cursive;

    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --section-pad: 120px;
    --container: 1200px;
}

body {
    background: var(--dark);
    color: var(--cream);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--red);
    color: var(--white);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ---- CANVAS ---- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    will-change: contents;
}

#kanji-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.065;
    will-change: contents;
}

/* ---- LOGO IMAGES ---- */
.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(192, 57, 43, 0.3));
    transition: filter 0.3s, transform 0.3s;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 18px rgba(192, 57, 43, 0.65));
    transform: scale(1.06);
}

.hero-logo-wrap {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-expo) 0.5s forwards;
}

.hero-logo-img {
    width: min(420px, 72vw);
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(192, 57, 43, 0.4));
    animation: heroLogoPulse 4s ease-in-out infinite;
}

@keyframes heroLogoPulse {

    0%,
    100% {
        filter: drop-shadow(0 8px 40px rgba(192, 57, 43, 0.35));
    }

    50% {
        filter: drop-shadow(0 14px 64px rgba(212, 175, 55, 0.55));
    }
}

.footer-logo-img {
    height: 46px;
    width: auto;
    filter: brightness(0.82);
    transition: filter 0.3s;
}

.footer-logo-img:hover {
    filter: brightness(1.05);
}

/* ===================================================================
   ASIAN VIBE STRIP
   =================================================================== */
.vibe-strip {
    background: linear-gradient(135deg, #0e0e0e 0%, #1a0d0c 50%, #0e0e0e 100%);
    border-top: 1px solid rgba(192, 57, 43, 0.18);
    border-bottom: 1px solid rgba(192, 57, 43, 0.18);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vibe-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent 0, transparent 70px,
            rgba(192, 57, 43, 0.03) 70px, rgba(192, 57, 43, 0.03) 71px);
}

.vibe-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.vibe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: default;
}

.vibe-kanji {
    font-size: 2.8rem;
    line-height: 1;
    color: var(--cream);
    display: block;
    animation: kanjiFloat 3s ease-in-out infinite;
    transition: color 0.3s, text-shadow 0.3s;
}

.vibe-item:hover .vibe-kanji {
    color: var(--red-light);
    text-shadow: 0 0 20px rgba(192, 57, 43, 0.6);
    animation-play-state: paused;
}

.vibe-item:nth-child(1) .vibe-kanji {
    animation-delay: 0s;
}

.vibe-item:nth-child(3) .vibe-kanji {
    animation-delay: 0.5s;
}

.vibe-item:nth-child(5) .vibe-kanji {
    animation-delay: 1s;
}

.vibe-item:nth-child(7) .vibe-kanji {
    animation-delay: 1.5s;
}

.vibe-item:nth-child(9) .vibe-kanji {
    animation-delay: 2s;
}

.vibe-item:nth-child(11) .vibe-kanji {
    animation-delay: 2.5s;
}

@keyframes kanjiFloat {

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

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

.vibe-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 600;
}

.vibe-sep {
    color: rgba(192, 57, 43, 0.3);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===================================================================
   HERO STEAM  
   =================================================================== */
.hero-steam {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-steam::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(245, 230, 200, 0.25), transparent);
    border-radius: 4px;
    animation: steamRise 3s ease-in-out infinite;
    filter: blur(3px);
}

.steam-1 {
    left: 25%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    height: 120px;
    animation-delay: 1.2s;
    width: 4px;
}

.steam-3 {
    left: 75%;
    height: 60px;
    animation-delay: 0.7s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-40px) scaleX(2.5) rotate(5deg);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-80px) scaleX(0.5) rotate(-5deg);
        opacity: 0;
    }
}

/* ===================================================================
   CARD STEAM – About cards
   =================================================================== */
.card-steam {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    pointer-events: none;
}

.card-steam span {
    display: block;
    width: 3px;
    height: 20px;
    background: linear-gradient(to top, rgba(245, 230, 200, 0.5), transparent);
    border-radius: 4px;
    filter: blur(2px);
    animation: cardSteam 2s ease-in-out infinite;
}

.card-steam span:nth-child(2) {
    animation-delay: 0.3s;
    height: 28px;
}

.card-steam span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes cardSteam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-18px) scaleX(0.3);
        opacity: 0;
    }
}

/* ===================================================================
   CHOPSTICK DIVIDER
   =================================================================== */
.chopstick-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chop-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.3), transparent);
}

.chop-icon {
    font-size: 1.8rem;
    animation: chopRotate 4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes chopRotate {

    0%,
    100% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

/* ===================================================================
   EXTRA LANTERNS (4 & 5)
   =================================================================== */
.lantern-4 {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
    font-size: 2rem;
    opacity: 0.12;
}

.lantern-5 {
    bottom: 30%;
    right: 22%;
    animation-delay: 3s;
    font-size: 1.2rem;
    opacity: 0.1;
}



/* ---- CUSTOM CURSOR ---- */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
    mix-blend-mode: exclusion;
}

.cursor-follower {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--cream);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.12s var(--ease-smooth);
    opacity: 0.5;
}

.cursor.hovered {
    transform: translate(-50%, -50%) scale(2.5);
    background: var(--gold);
}

.cursor-follower.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.15;
    border-color: var(--gold);
}

/* ---- CONTAINER ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- SECTION BASE ---- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red-light);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.section-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--red-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

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

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

.section-sub {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 560px;
    margin-bottom: 3rem;
}

.section-sub.centered {
    margin: 0 auto 3rem;
    text-align: center;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 30px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
    background: var(--red-light);
    box-shadow: 0 6px 40px rgba(231, 76, 60, 0.55);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(245, 230, 200, 0.3);
}

.btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(245, 230, 200, 0.05);
    transform: translateY(-2px);
}

.btn.full-width {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 1rem 2rem;
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(245, 230, 200, 0.06);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-svg {
    width: 52px;
    height: 26px;
}

.logo-ahoy {
    font-family: var(--font-script);
    font-size: 1.9rem;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.01em;
}

.logo-asia {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--red);
    margin-top: 0.3rem;
    align-self: flex-end;
    margin-bottom: 0.2rem;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 230, 200, 0.75);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.25s, background 0.25s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--red-light);
    transition: left 0.3s var(--ease-smooth), right 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--cream);
}

.nav-link:hover::after {
    left: 1rem;
    right: 1rem;
}

.nav-link.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 60px;
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--red-light);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

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

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

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

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 12s ease;
    will-change: transform;
}

.hero:hover .hero-img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(17, 17, 17, 0.35) 0%,
            rgba(17, 17, 17, 0.55) 50%,
            rgba(17, 17, 17, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 840px;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 57, 43, 0.18);
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: var(--red-light);
    padding: 0.45rem 1.2rem;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideDown 1s var(--ease-expo) 0.3s forwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-expo) 0.5s forwards;
}

.hero-ahoy {
    font-family: var(--font-script);
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--cream);
    line-height: 0.9;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-asia-text {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.6em;
    color: var(--red);
    margin-top: -0.2rem;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(245, 230, 200, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-expo) 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-expo) 1s forwards;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 230, 200, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    animation: pulse 2.5s ease infinite;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(245, 230, 200, 0.5), transparent);
    animation: scrollDown 2.5s ease infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.6) translateY(8px);
        opacity: 0.5;
    }
}

/* Floating lanterns */
.lantern {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
    animation: floatLantern 6s ease-in-out infinite;
}

.lantern-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.lantern-2 {
    top: 35%;
    right: 10%;
    animation-delay: 2s;
    font-size: 1.8rem;
}

.lantern-3 {
    bottom: 25%;
    left: 14%;
    animation-delay: 4s;
    font-size: 1.5rem;
}

@keyframes floatLantern {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Keyframes */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Data-aos simple fallback */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: none;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: none;
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.about-body {
    font-size: 0.97rem;
    color: rgba(245, 230, 200, 0.65);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 230, 200, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red-light);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--red-light);
    font-weight: 700;
    line-height: 1;
    align-self: flex-end;
    margin-bottom: 0.1rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--grey);
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
}

/* About card stack */
.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}

.about-card {
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 16px;
    padding: 1.6rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: transform 0.35s var(--ease-smooth), border-color 0.35s, box-shadow 0.35s;
    cursor: default;
}

.about-card:hover {
    transform: translateX(8px);
    border-color: rgba(192, 57, 43, 0.35);
    box-shadow: -4px 0 20px rgba(192, 57, 43, 0.12);
}

.card-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
}

/* Hours strip */
.hours-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 16px;
    padding: 1.6rem 2rem;
    margin-top: 4rem;
}

.hours-strip.mini {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
}

.hours-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hours-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
    flex: 1;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hours-day {
    font-size: 0.85rem;
    color: var(--grey);
}

.hours-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.hours-time {
    font-size: 0.85rem;
    color: var(--cream);
    font-weight: 600;
}

/* ===================================================================
   MENU — Premium Tabbed Design
   =================================================================== */
.menu-section {
    background: var(--dark);
}

/* Category tabs */
.menu-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 230, 200, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.menu-tab:hover {
    color: var(--cream);
    border-color: rgba(245, 230, 200, 0.25);
}

.menu-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.menu-tab-icon {
    font-size: 1rem;
}

/* Menu bento grid */
.menu-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.2rem;
}

.menu-bento-card {
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Grid placement for bento layout */
.menu-bento-card:nth-child(1) {
    grid-column: span 7;
    grid-row: span 1;
    min-height: 220px;
}

.menu-bento-card:nth-child(2) {
    grid-column: span 5;
    grid-row: span 1;
    min-height: 220px;
}

.menu-bento-card:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
    min-height: 200px;
}

.menu-bento-card:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
    min-height: 200px;
}

.menu-bento-card:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
    min-height: 200px;
}

.menu-bento-card:nth-child(6) {
    grid-column: span 5;
    grid-row: span 1;
    min-height: 200px;
}

.menu-bento-card:nth-child(7) {
    grid-column: span 7;
    grid-row: span 1;
    min-height: 200px;
}

/* Card backgrounds using theme colors */
.menu-bento-card:nth-child(1) {
    background: linear-gradient(135deg, #1e0e0e 0%, #2c1010 100%);
}

.menu-bento-card:nth-child(2) {
    background: linear-gradient(135deg, #0f1a20 0%, #141e2a 100%);
}

.menu-bento-card:nth-child(3) {
    background: linear-gradient(135deg, #1a160e 0%, #251e12 100%);
}

.menu-bento-card:nth-child(4) {
    background: linear-gradient(135deg, #0e1a12 0%, #12251a 100%);
}

.menu-bento-card:nth-child(5) {
    background: linear-gradient(135deg, #1a0e18 0%, #24121f 100%);
}

.menu-bento-card:nth-child(6) {
    background: linear-gradient(135deg, #180e0e 0%, #2a1212 100%);
}

.menu-bento-card:nth-child(7) {
    background: linear-gradient(135deg, #0f1520 0%, #111925 100%);
}

/* Shimmer effect on hover */
.menu-bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.7s var(--ease-smooth);
}

.menu-bento-card:hover::before {
    transform: translateX(100%);
}

/* Glow border */
.menu-bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.5), rgba(212, 175, 55, 0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.menu-bento-card:hover::after {
    opacity: 1;
}

.menu-bento-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Card inner content */
.menu-bento-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.35s var(--ease-smooth);
}

.menu-bento-card:hover .menu-bento-emoji {
    transform: scale(1.2) rotate(5deg);
}

.menu-bento-tag {
    display: inline-block;
    margin-bottom: 0.6rem;
    padding: 0.2rem 0.65rem;
    background: rgba(192, 57, 43, 0.2);
    border: 1px solid rgba(192, 57, 43, 0.35);
    color: var(--red-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 60px;
}

.menu-bento-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--cream);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.menu-bento-card p {
    font-size: 0.82rem;
    color: rgba(245, 230, 200, 0.5);
    line-height: 1.6;
    max-width: 38ch;
}

/* Animated entry state */
.menu-bento-card.hidden-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.menu-bento-card.visible-card {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s var(--ease-expo), transform 0.55s var(--ease-expo);
}

@media (max-width: 900px) {
    .menu-bento {
        grid-template-columns: 1fr 1fr;
    }

    .menu-bento-card:nth-child(n) {
        grid-column: span 1;
        min-height: 180px;
    }

    .menu-bento-card:nth-child(1),
    .menu-bento-card:nth-child(7) {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .menu-bento {
        grid-template-columns: 1fr;
    }

    .menu-bento-card:nth-child(n) {
        grid-column: span 1;
    }
}

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery-section {
    background: var(--dark-2);
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.gallery-section .container {
    margin-bottom: 3rem;
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

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

.gallery-item {
    width: 240px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 1px solid rgba(245, 230, 200, 0.07);
    cursor: default;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    transform: scale(1.04);
    border-color: rgba(192, 57, 43, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-emoji {
    font-size: 4rem;
}

.gallery-item p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dim);
    font-weight: 600;
}

/* Gallery card gradient backgrounds */
.g-ramen {
    background: linear-gradient(135deg, #1f1510, #2a1a12);
}

.g-sushi {
    background: linear-gradient(135deg, #101820, #142030);
}

.g-cocktail {
    background: linear-gradient(135deg, #1a1020, #221530);
}

.g-padthai {
    background: linear-gradient(135deg, #1a1510, #2a1e10);
}

.g-dumpling {
    background: linear-gradient(135deg, #101a15, #12251a);
}

.g-bar {
    background: linear-gradient(135deg, #1a1215, #2a1520);
}

.g-poke {
    background: linear-gradient(135deg, #101820, #0a1525);
}

.g-garden {
    background: linear-gradient(135deg, #181018, #221520);
}

/* ===================================================================
   RESERVATIONS
   =================================================================== */

/* Success overlay */
.reservations-form-wrap {
    position: relative;
}

.res-success {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0808 0%, #0e0808 100%);
    border-radius: 24px;
    border: 1px solid rgba(192, 57, 43, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.res-success.visible {
    opacity: 1;
    pointer-events: all;
}

.res-success-inner {
    text-align: center;
    padding: 2rem;
    transform: translateY(60px) scale(0.8);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.res-success.visible .res-success-inner {
    transform: translateY(0) scale(1);
}

.res-success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: successLantern 2s ease-in-out infinite;
}

@keyframes successLantern {

    0%,
    100% {
        transform: rotate(-5deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.1);
    }
}

.res-success h3 {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 0.6rem;
}

.res-success p {
    color: var(--grey);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sparkle particles inside success */
.res-success::before {
    content: '🌸 🌸 🌸';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    opacity: 0.2;
    letter-spacing: 1.5rem;
    animation: successPetals 3s ease infinite;
}

@keyframes successPetals {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
        opacity: 0.4;
    }
}

.reservations-section {
    background: var(--dark);
    position: relative;
}

.reservations-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(192, 57, 43, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.reservations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.reservations-sub {
    font-size: 0.97rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(245, 230, 200, 0.04);
    border: 1px solid rgba(245, 230, 200, 0.1);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.phone-btn:hover {
    background: rgba(192, 57, 43, 0.08);
    border-color: rgba(192, 57, 43, 0.3);
    transform: translateX(4px);
}

.phone-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.phone-label {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.phone-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

/* Form */
.reservations-form-wrap {
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 24px;
    padding: 2.5rem;
}

.reservation-form h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 230, 200, 0.1);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--cream);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: border-color 0.25s, background 0.25s;
    outline: none;
    cursor: text;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(192, 57, 43, 0.5);
    background: rgba(192, 57, 43, 0.04);
}

.form-group textarea {
    resize: vertical;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
}

/* Guest counter */
.guests-counter {
    display: flex;
    align-items: center;
    gap: 0;
}

.counter-btn {
    width: 40px;
    height: 40px;
    background: rgba(245, 230, 200, 0.08);
    border: 1px solid rgba(245, 230, 200, 0.1);
    color: var(--cream);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.counter-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.counter-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.counter-btn:hover {
    background: rgba(192, 57, 43, 0.25);
}

.guests-counter input {
    width: 60px;
    height: 40px;
    border-radius: 0 !important;
    text-align: center;
    border-left: none !important;
    border-right: none !important;
    margin-bottom: 0 !important;
}

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews-section {
    background: var(--dark-2);
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.review-card.featured-review {
    border-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, var(--dark-3), rgba(212, 175, 55, 0.03));
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-stars {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(245, 230, 200, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
}

.author-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-section {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 57, 43, 0.25);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.7;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--cream);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.facebook {
    background: rgba(24, 119, 242, 0.15);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: #5b9bd5;
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.25);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.social-btn.instagram {
    background: rgba(193, 53, 132, 0.15);
    border: 1px solid rgba(193, 53, 132, 0.3);
    color: #e1559c;
}

.social-btn.instagram:hover {
    background: rgba(193, 53, 132, 0.25);
    box-shadow: 0 8px 25px rgba(193, 53, 132, 0.2);
}

.social-btn.tiktok {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f0f0f0;
}

.social-btn.tiktok:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.08);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(245, 230, 200, 0.06);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--grey);
}

.footer-top {
    width: 40px;
    height: 40px;
    background: rgba(245, 230, 200, 0.06);
    border: 1px solid rgba(245, 230, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.footer-top svg {
    width: 16px;
    height: 16px;
}

.footer-top:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
    :root {
        --section-pad: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(17, 17, 17, 0.97);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.4rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 600px) {
    .hero-ahoy {
        font-size: 4.5rem;
    }

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

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

    .about-stats {
        gap: 1.5rem;
    }

    .hours-strip {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

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

/* =================================================================
   NAV ORDER BUTTON
   ================================================================= */
.nav-order {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: #fff !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: 60px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.35);
    transition: transform 0.2s, box-shadow 0.2s !important;
    animation: orderPulse 2.5s ease infinite;
}

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

.nav-order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.5);
}

@keyframes orderPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(39, 174, 96, 0.35);
    }

    50% {
        box-shadow: 0 4px 28px rgba(39, 174, 96, 0.7);
    }
}

/* =================================================================
   WEEKLY SPECIALS SECTION
   ================================================================= */
.weekly-section {
    background: linear-gradient(135deg, #0e0808 0%, #1a0c0c 50%, #0e0808 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.weekly-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(192, 57, 43, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.weekly-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.weekly-badge {
    display: inline-block;
    background: rgba(192, 57, 43, 0.18);
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: var(--red-light);
    padding: 0.35rem 1rem;
    border-radius: 60px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.weekly-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.weekly-desc {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.weekly-dishes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.weekly-dish {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(245, 230, 200, 0.07);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    opacity: 0.5;
}

.weekly-dish.active {
    opacity: 1;
    border-color: rgba(192, 57, 43, 0.35);
    background: rgba(192, 57, 43, 0.08);
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.15);
}

.weekly-dish:hover {
    opacity: 0.85;
    border-color: rgba(245, 230, 200, 0.2);
}

.weekly-dish-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.weekly-dish strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
}

.weekly-dish span {
    color: var(--grey);
    font-size: 0.8rem;
}

.weekly-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.w-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 230, 200, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.w-dot.active {
    background: var(--red);
    transform: scale(1.3);
}

/* Orbiting circle */
.weekly-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.weekly-circle {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weekly-circle-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(135deg, #2a0e0e, #1a0808);
    border: 2px solid rgba(192, 57, 43, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(192, 57, 43, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    z-index: 2;
}

.weekly-big-emoji {
    font-size: 3.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.weekly-steam {
    display: flex;
    gap: 6px;
}

.weekly-steam span {
    width: 4px;
    background: rgba(245, 230, 200, 0.15);
    border-radius: 4px;
    animation: steamUp 2s ease-in-out infinite;
}

.weekly-steam span:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.weekly-steam span:nth-child(2) {
    height: 28px;
    animation-delay: 0.3s;
}

.weekly-steam span:nth-child(3) {
    height: 16px;
    animation-delay: 0.6s;
}

@keyframes steamUp {

    0%,
    100% {
        transform: translateY(0) scaleX(1);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-12px) scaleX(1.5);
        opacity: 0;
    }
}

/* Orbiting food icons */
.orbit-ring {
    position: absolute;
    inset: 0;
    animation: orbitSpin 12s linear infinite;
}

.orbit-item {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 1.4rem;
    transform-origin: 0 0;
    transform: rotate(var(--deg)) translateY(-130px) rotate(calc(-1 * var(--deg)));
    margin-left: -0.7rem;
    margin-top: -0.7rem;
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .weekly-inner {
        grid-template-columns: 1fr;
    }

    .weekly-right {
        display: none;
    }
}

/* =================================================================
   STORY TIMELINE
   ================================================================= */
.story-section {
    background: var(--dark-2);
}

.timeline {
    position: relative;
    max-width: 760px;
    margin: 3.5rem auto 0;
    padding: 0 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(192, 57, 43, 0.4) 10%, rgba(192, 57, 43, 0.4) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-dot {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 2px solid rgba(192, 57, 43, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--dark-2), 0 0 20px rgba(192, 57, 43, 0.15);
    transition: box-shadow 0.3s, border-color 0.3s;
}

.timeline-item:hover .timeline-dot {
    border-color: var(--red);
    box-shadow: 0 0 0 6px var(--dark-2), 0 0 30px rgba(192, 57, 43, 0.4);
}

.timeline-content {
    flex: 1;
    background: var(--dark-3);
    border: 1px solid rgba(245, 230, 200, 0.07);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(192, 57, 43, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 0.4rem;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--grey);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .timeline::before {
        left: 26px;
    }

    .timeline-item,
    .timeline-item.right {
        flex-direction: row;
    }

    .timeline-item.right .timeline-content {
        order: 1;
    }
}

/* =================================================================
   MASONRY GALLERY
   ================================================================= */
.gallery-section {
    background: var(--dark-2);
    overflow: hidden;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 0.7rem;
    padding: 0.7rem;
    margin-top: 2rem;
}

.masonry-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--dark-3);
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth), filter 0.4s;
    display: block;
}

.masonry-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.65);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.masonry-overlay span {
    font-size: 2rem;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 5, 0.93);
    backdrop-filter: blur(8px);
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.open .lightbox-inner {
    transform: scale(1);
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    display: block;
}

#lightboxCaption {
    color: var(--cream-dim);
    font-size: 0.9rem;
    margin-top: 0.8rem;
    letter-spacing: 0.05em;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cream);
    font-size: 1.6rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
    background: rgba(192, 57, 43, 0.4);
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    .masonry-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .masonry-item.tall {
        grid-row: span 1;
    }
}

/* =================================================================
   GOOGLE MAPS EMBED
   ================================================================= */
.map-wrap {
    margin-top: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(245, 230, 200, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}



/* Ezt a meglévő index.css legvégére másold, a többi tartalom marad változatlanul! */

/* =================================================================
   TEXT OVERFLOW FIXES (Szöveg összecsúszás javítás)
   ================================================================= */
h1,
h2,
h3,
p,
span,
a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.about-stats {
    flex-wrap: wrap;
}

.hours-items {
    flex-wrap: wrap;
}

.menu-bento-card {
    height: 100%;
}

.weekly-dish {
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .navbar {
        z-index: 9999;
    }

    .nav-links {
        z-index: 9998;
    }

    .nav-toggle {
        z-index: 10000;
    }
}


/* --- HERO TARTALOM LEJJEBB TOLÁSA (hogy ne lógjon a menübe) --- */
.hero-content {
    margin-top: 100px;
    /* Ez garantálja, hogy a menü alatt kezdődjön a tartalom */
}

/* Kisebb / fekvő képernyőkön is biztosítjuk a helyet */
@media (max-height: 700px) {
    .hero-content {
        margin-top: 120px;
        transform: scale(0.9);
        /* Kicsit lekicsinyíti a tartalmat, hogy kiférjen */
    }
}
/* Foodbooking Modal */
.fb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fb-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.fb-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.fb-modal-inner {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fb-modal.active .fb-modal-inner {
    transform: translateY(0);
}

.fb-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.fb-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    background: transparent;
    border: none;
    z-index: 100000;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
}

.fb-modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    color: var(--y, #FFB800);
}

@media (max-width: 768px) {
    .fb-modal-inner {
        width: 100%;
        height: 100dvh;
        border-radius: 0;
    }
    .fb-modal-close {
        top: 10px;
        right: 15px;
        color: #333;
        background: rgba(255,255,255,0.8);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }
}

/* ===================================================================
   MENU CARD OPEN BUTTON
   =================================================================== */
.menu-card-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.5rem 1.1rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #d4af37;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    font-family: var(--font-sans);
    position: relative;
    z-index: 2;
}

.menu-card-open-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

/* ===================================================================
   MENU VIEWER MODAL
   =================================================================== */
.menu-viewer-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-viewer-modal.open {
    opacity: 1;
    pointer-events: all;
}

.menu-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.menu-viewer-panel {
    position: relative;
    z-index: 1;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    width: min(95vw, 1200px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 60px rgba(212,175,55,0.05);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-viewer-modal.open .menu-viewer-panel {
    transform: scale(1) translateY(0);
}

.menu-viewer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #f5e6c8;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    line-height: 1;
}

.menu-viewer-close:hover {
    background: rgba(192, 57, 43, 0.4);
    border-color: rgba(192, 57, 43, 0.6);
}

.menu-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem 0.8rem;
    border-bottom: 1px solid rgba(245, 230, 200, 0.07);
}

.menu-viewer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #f5e6c8;
    font-weight: 600;
}

.menu-viewer-counter {
    font-size: 0.78rem;
    color: rgba(245, 230, 200, 0.4);
    font-weight: 600;
    letter-spacing: 0.06em;
    padding-right: 2.5rem;
}

.menu-viewer-img-wrap {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.2rem;
    background: #0a0a0a;
    text-align: center;
}

.menu-viewer-img-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    transition: opacity 0.25s;
    user-select: none;
    -webkit-user-drag: none;
}

.menu-viewer-img-wrap img.fading {
    opacity: 0.1;
}

.menu-viewer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    border-top: 1px solid rgba(245, 230, 200, 0.07);
    gap: 1rem;
}

.menu-viewer-btn {
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--font-sans, sans-serif);
    white-space: nowrap;
}

.menu-viewer-btn:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.6);
}

.menu-viewer-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.menu-viewer-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-viewer-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(245, 230, 200, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.menu-viewer-dot.active {
    background: #d4af37;
    transform: scale(1.3);
}

.menu-viewer-dot:hover:not(.active) {
    background: rgba(212, 175, 55, 0.5);
}

@media (max-width: 600px) {
    .menu-viewer-panel {
        width: 100vw;
        max-height: 95dvh;
        border-radius: 16px 16px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
    }
    .menu-viewer-modal.open .menu-viewer-panel {
        transform: translateY(0);
    }
}
