/* ================================================================
   AHOY STREET KITCHEN — Premium CSS v2.6 (Gyorsított, Reszponzív)
   ================================================================ */

:root {
    --y: #FFB800;
    --y2: #FFC933;
    --y3: #D99C00;
    --blk: #080704;
    --blk2: #0e0c05;
    --blk3: #181505;
    --blk4: #201c06;
    --cream: #F7F2D6;
    --cream2: rgba(247, 242, 214, 0.65);
    --muted: rgba(247, 242, 214, 0.38);
    --ff-title: 'Bebas Neue', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --ff-serif: 'Playfair Display', serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Tördelés kikényszerítése globálisan text-on-text hiba ellen */
h1,
h2,
h3,
h4,
p,
span,
div {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body {
    font-family: var(--ff-body);
    background: var(--blk);
    color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

::selection {
    background: var(--y);
    color: var(--blk);
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ░░░░ LOADER ░░░░ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--blk);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.5s var(--ease), pointer-events 0s 0.5s;
}

#loader.done {
    opacity: 0;
    pointer-events: none;
}

.ld-ring {
    width: 72px;
    height: 72px;
    border: 3px solid rgba(255, 184, 0, 0.18);
    border-top-color: var(--y);
    border-radius: 50%;
    animation: ldSpin 0.9s linear infinite;
}

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

.ld-text {
    font-family: var(--ff-title);
    font-size: 3rem;
    letter-spacing: 0.25em;
    color: var(--cream);
}

.ld-exclaim {
    color: var(--y);
}

.ld-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 184, 0, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.ld-fill {
    height: 100%;
    background: var(--y);
    border-radius: 2px;
    animation: ldFill 1.6s var(--ease) forwards;
}

@keyframes ldFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ░░░░ CUSTOM CURSOR ░░░░ */
#cur {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 184, 0, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.25s;
}

#cur.sm {
    width: 14px;
    height: 14px;
    background: var(--y);
    border-color: var(--y);
}

#cur.big {
    width: 72px;
    height: 72px;
    background: rgba(255, 184, 0, 0.08);
    border-color: rgba(255, 184, 0, 0.4);
}

#cur.drag {
    width: 46px;
    height: 46px;
    background: rgba(255, 184, 0, 0.15);
    border-color: var(--y);
}

#cur.drag::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--y);
    font-size: 14px;
    font-weight: bold;
}

body:not(:hover) #cur {
    opacity: 0;
}

#pgbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 9000;
    background: var(--y);
    box-shadow: 0 0 8px rgba(255, 184, 0, 0.6);
    width: 0%;
    pointer-events: none;
}

/* ░░░░ MENU LIGHTBOX ░░░░ */
.mlb {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mlb.open {
    pointer-events: all;
}

.mlb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.mlb.open .mlb-backdrop {
    opacity: 1;
}

.mlb-panel {
    position: relative;
    z-index: 1;
    width: min(95vw, 1200px);
    height: 85vh;
    display: flex;
    flex-direction: column;
    background: var(--blk3);
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.88) translateY(40px);
    opacity: 0;
    transition: transform 0.5s var(--ease-back), opacity 0.4s var(--ease);
}

.mlb.open .mlb-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.mlb-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.8rem 0;
}

.mlb-num {
    font-family: var(--ff-title);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--y);
    display: block;
    margin-bottom: 0.25rem;
}

.mlb-title {
    font-family: var(--ff-title);
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    line-height: 1.1;
}

.mlb-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.mlb-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(247, 242, 214, 0.07);
    border: 1px solid rgba(247, 242, 214, 0.12);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mlb-close:hover {
    background: var(--y);
    color: var(--blk);
    border-color: var(--y);
    transform: rotate(90deg);
}

.mlb-img-wrap {
    position: relative;
    margin: 1.2rem 1.8rem;
    border-radius: 14px;
    overflow-y: auto;
    flex: 1;
    background: var(--blk);
}

.mlb-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s;
}

.mlb-img-wrap img.loading {
    opacity: 0;
}

.mlb-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blk3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mlb-loading.show {
    opacity: 1;
}

.mlb-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 184, 0, 0.15);
    border-top-color: var(--y);
    border-radius: 50%;
    animation: ldSpin 0.8s linear infinite;
}

.mlb-nav {
    display: flex;
    gap: 0.8rem;
    padding: 0 1.8rem 1.5rem;
    justify-content: flex-end;
}

.mlb-arrow {
    background: rgba(247, 242, 214, 0.06);
    border: 1px solid rgba(247, 242, 214, 0.1);
    color: var(--cream2);
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}

.mlb-arrow:hover {
    background: var(--y);
    border-color: var(--y);
    color: var(--blk);
    transform: translateY(-1px);
}

/* ░░░░ CONTAINER / UTILS ░░░░ */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sec-overline {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 0.6rem;
    display: block;
}

.sec-h2 {
    font-family: var(--ff-title);
    font-size: clamp(3.2rem, 6.5vw, 6.5rem);
    line-height: 1.15 !important;
    color: var(--cream);
    margin-bottom: 1.5rem !important;
}

.sec-h2 em {
    color: var(--y);
    font-style: normal;
    font-family: var(--ff-serif);
    font-size: 0.82em;
}

.reveal-text {
    overflow: hidden;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.btn-pill:hover::before {
    transform: scaleX(1);
}

.btn-yellow {
    background: var(--y);
    color: var(--blk);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.3);
}

.btn-yellow:hover {
    box-shadow: 0 10px 36px rgba(255, 184, 0, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(247, 242, 214, 0.3);
    color: var(--cream);
}

.btn-outline:hover {
    border-color: var(--y);
    color: var(--y);
}

.btn-dark {
    background: var(--blk);
    color: var(--y);
    border: 2px solid var(--y);
}

.btn-dark:hover {
    background: var(--y);
    color: var(--blk);
}

.about-num {
    font-family: var(--ff-title);
    font-size: clamp(5rem, 10vw, 9rem);
    color: rgba(255, 184, 0, 0.07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.spec-head {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

/* ░░░░ NAV ░░░░ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.4s, padding 0.4s;
}

#nav.scrolled {
    background: rgba(8, 7, 4, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.7rem 2.5rem;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.nav-brand .nav-logo {
    height: 46px;
    width: auto;
    /* filter handled by inline style – brightness(0) invert(1) converts white-bg logo to white on dark */
    transition: opacity 0.2s, transform 0.3s var(--ease);
}

.nav-brand:hover .nav-logo {
    opacity: 0.8;
    transform: scale(1.04);
}

.nav-center {
    display: flex;
    gap: 0.2rem;
}

.nl {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--cream2);
    position: relative;
    border-radius: 6px;
    transition: color 0.2s;
}

.nl::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.85rem;
    right: 0.85rem;
    height: 1.5px;
    background: var(--y);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}

.nl:hover,
.nl.active {
    color: var(--cream);
}

.nl:hover::after,
.nl.active::after {
    transform: scaleX(1);
}

/* Új Nav Design Elemek */
.highlight-menu {
    background: var(--y) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.2);
}

.highlight-menu .nl {
    color: var(--blk) !important;
    font-weight: 700;
}

.highlight-menu .nl::after {
    background: var(--blk) !important;
}

.highlight-menu .nl:hover,
.highlight-menu .nl.active {
    color: var(--blk) !important;
    font-weight: 900;
}

.inverted-btn {
    background: var(--blk) !important;
    color: var(--y) !important;
    border: 2px solid var(--blk) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.inverted-btn:hover {
    background: transparent !important;
    border-color: var(--y) !important;
    color: var(--y) !important;
    transform: translateY(-2px);
}

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

.lang-toggle {
    background: transparent;
    border: 2px solid rgba(247, 242, 214, 0.2);
    border-radius: 60px;
    padding: 0.4rem 0.8rem;
    color: var(--cream);
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s var(--ease);
}

.lang-toggle:hover {
    border-color: var(--y);
    color: var(--y);
    background: rgba(255, 184, 0, 0.05);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 6px;
}

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

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

.nav-burger.open span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}

#mobileMenu {
    position: fixed;
    inset: 0;
    z-index: 990;
    background: var(--blk);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    transform: translateY(-20px);
}

#mobileMenu.open {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

#mobileMenu a {
    font-family: var(--ff-title);
    font-size: 3rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    transition: color 0.2s;
}

#mobileMenu a:hover {
    color: var(--y);
}

.mob-order {
    background: var(--y) !important;
    color: var(--blk) !important;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-size: 1rem !important;
    font-weight: 700;
    margin-top: 1rem;
}

/* ░░░░ HERO ░░░░ */
.hero {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#noiseCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-diag {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.05) 0%, rgba(255, 184, 0, 0.02) 100%);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-left {
    position: relative;
    z-index: 2;
    padding: 2rem 2.5rem 2rem 4rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 1.5rem;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--y);
    display: inline-block;
    animation: dotBlink 1.8s ease-in-out infinite;
}

@keyframes dotBlink {

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

    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

.hero-h1 {
    font-family: var(--ff-title);
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    line-height: 1.1 !important;
    letter-spacing: 0.02em;
    margin-bottom: 1.6rem;
}

.h1-line-wrap {
    display: block;
    overflow: hidden;
    padding-bottom: 0.1em;
}

.h1-line {
    display: inline-block;
}

.h1-line.accent {
    background: var(--y);
    color: var(--blk);
    padding: 0.05em 0.3em;
    margin: 0.2em 0;
    transform: rotate(-1.5deg);
    border-radius: 4px;
    box-shadow: 6px 6px 0 rgba(255, 184, 0, 0.25);
}

.hero-desc {
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    color: var(--cream2);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    max-width: 420px;
}

.hero-desc strong {
    color: var(--y);
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-stats-strip {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    background: rgba(247, 242, 214, 0.04);
    border: 1px solid rgba(247, 242, 214, 0.08);
    border-radius: 14px;
    width: fit-content;
}

.hs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.hs span {
    font-family: var(--ff-title);
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: var(--y);
    line-height: 1;
}

.hs small {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hs-sep {
    width: 1px;
    height: 28px;
    background: rgba(247, 242, 214, 0.1);
}

/* Hero Right Robosztus Design */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-dish-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.robust {
    width: 100% !important;
    max-width: 580px !important;
    height: 500px !important;
    margin-left: auto;
}

.dish-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.93);
    }

    100% {
        opacity: 1;
        transform: scale(1.07);
    }
}

.hi-mask {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 184, 0, 0.6);
}

.robust-mask {
    border-radius: 24px !important;
}

.hi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    will-change: transform;
}

/* Lebegő kerekített felirat */
.hero-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 15;
    background: rgba(8, 7, 4, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.corner-badge {
    top: -20px;
    right: -20px;
}

.hero-badge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: var(--y);
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    animation: badgeSpin 14s linear infinite;
}

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

.hb-icon {
    font-size: 2rem;
    color: var(--y);
    z-index: 2;
}

.dish-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.robust-switcher {
    bottom: -3rem !important;
}

.ds-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(247, 242, 214, 0.2);
    border: 1.5px solid rgba(247, 242, 214, 0.3);
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-back);
}

.ds-dot.active,
.ds-dot:hover {
    background: var(--y);
    border-color: var(--y);
    transform: scale(1.25);
}

/* ░░░░ MARQUEE ░░░░ */
.marquee-belt {
    background: var(--y);
    overflow: hidden;
    padding: 0.85rem 0;
    position: relative;
    z-index: 5;
}

.mb-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: mbScroll 25s linear infinite;
}

.mb-track span {
    font-family: var(--ff-title);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--blk);
    white-space: nowrap;
}

.sep {
    opacity: 0.45;
    font-size: 0.7rem;
}

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

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

/* ░░░░ ABOUT ░░░░ */
.about-section {
    background: var(--blk2);
    padding: 7rem 0;
    position: relative;
}

.about-angle-top {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--blk);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.about-angle-bot {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--blk);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.about-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 2rem 4rem;
    align-items: start;
}

.about-inner .about-num {
    grid-row: 1/3;
    grid-column: 1;
}

.about-txt {
    grid-column: 2;
}

.about-stats {
    grid-column: 3;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-self: center;
}

.about-chips {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.about-chips span {
    background: rgba(255, 184, 0, 0.07);
    border: 1px solid rgba(255, 184, 0, 0.18);
    padding: 0.38rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.25s, border-color 0.25s;
}

.about-quote {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--y);
    border-left: 3px solid var(--y);
    padding-left: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.about-body {
    color: var(--cream2);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.astat {
    text-align: center;
    padding: 1.2rem 1.6rem;
    background: var(--blk3);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 16px;
    min-width: 100px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.astat-n {
    font-family: var(--ff-title);
    font-size: 2.5rem;
    color: var(--y);
    line-height: 1;
}

.astat-unit {
    font-family: var(--ff-title);
    font-size: 1.6rem;
    color: var(--y);
    opacity: 0.7;
}

.astat p {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.3rem;
    text-transform: uppercase;
}

/* ░░░░ SPECIALS & PROMO ░░░░ */
.spec-section {
    background: var(--blk);
    padding: 6rem 0;
}

.monthly-promo-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mpb-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mpb-text {
    flex: 1.2;
}

.mpb-images {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.mpb-images img {
    width: 50%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.bento-med {
    grid-column: span 2;
}

.bento-sm {
    grid-column: span 2;
}

.sc {
    background: var(--blk3);
    border: 1px solid rgba(247, 242, 214, 0.06);
    border-radius: 20px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.sc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--y), var(--y2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.sc:hover {
    border-color: rgba(255, 184, 0, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(-4px);
}

.sc:hover::before {
    transform: scaleX(1);
}

.sc-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 184, 0, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.sc-badge {
    display: inline-block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--y);
    color: var(--blk);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 60px;
}

.sc-em {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 0.6rem;
    transition: transform 0.4s var(--ease-back);
}

.sc:hover .sc-em {
    transform: scale(1.2) rotate(-5deg);
}

.sc-price {
    font-family: var(--ff-title);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--y);
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.sc h3 {
    font-family: var(--ff-title);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.15;
    hyphens: auto;
}

.sc p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ░░░░ MENU (PRÉMIUM KÁRTYÁK) ░░░░ */
.menu-section {
    background: var(--blk2);
    padding: 6rem 0 3rem;
}

.menu-hscroll-wrap-outer {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 44px;
}

.menu-hscroll-wrap {
    overflow-x: auto;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}


.menu-hscroll-wrap:active {
    cursor: grabbing;
}

.menu-hscroll-wrap::-webkit-scrollbar {
    display: none;
}

.menu-hscroll {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0 1rem;
}

.mcard {
    width: 320px;
    height: 480px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
}

.mcard:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.mcard-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: var(--blk);
}

.mcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(85%) contrast(1.15) brightness(0.8);
    transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.mcard:hover .mcard-img img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1) brightness(1);
}

.mcard-body {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    z-index: 3;
    background: rgba(14, 12, 5, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 14px;
    padding: 1.4rem;
    transform: translateY(10px);
    transition: transform 0.5s var(--ease-back), border-color 0.4s, background 0.4s;
}

.mcard:hover .mcard-body {
    transform: translateY(0);
    border-color: rgba(255, 184, 0, 0.5);
    background: rgba(14, 12, 5, 0.95);
}

.mcard-num {
    font-family: var(--ff-title);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--y);
    display: block;
    margin-bottom: 0.4rem;
}

.mcard-body h3 {
    font-family: var(--ff-title);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.4rem;
    line-height: 1.1;
    text-transform: uppercase;
    hyphens: auto;
}

.mcard-body p {
    font-size: 0.8rem;
    color: var(--cream2);
    line-height: 1.5;
}

.mcard-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(247, 242, 214, 0.15);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--y);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-drag-hint {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 1.5rem;
}

/* ░░░░ DELIVERY CTA ░░░░ */
.delivery-cta {
    background: var(--y);
    position: relative;
    overflow: hidden;
    padding: 4.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

.dc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}

.dc-content {
    text-align: left;
    z-index: 2 !important;
}

.dc-anim-side {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-speed-lines {
    position: absolute;
    inset: -50px;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.wb-line {
    position: absolute;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    animation: speedLine 0.6s linear infinite;
}

.wb-line.l1 {
    top: 20%;
    width: 120px;
    animation-duration: 0.5s;
    animation-delay: 0.1s;
}

.wb-line.l2 {
    top: 50%;
    width: 80px;
    animation-duration: 0.7s;
    animation-delay: 0.3s;
}

.wb-line.l3 {
    top: 75%;
    width: 140px;
    animation-duration: 0.6s;
    animation-delay: 0.5s;
}

@keyframes speedLine {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(-400px);
        opacity: 0;
    }
}

.wolt-bike-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.wb-road {
    position: absolute;
    bottom: 40px;
    left: -50px;
    right: -50px;
    height: 50px;
    background: #111;
    border-radius: 20px;
    transform: perspective(600px) rotateX(60deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.wb-road::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--y) 0, var(--y) 40px, transparent 40px, transparent 80px);
    transform: translateY(-50%);
    animation: roadMove 0.4s linear infinite;
}

@keyframes roadMove {
    from {
        transform: translateY(-50%) translateX(0);
    }

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

.wb-scooter {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 140px;
    animation: scooterBounce 0.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.4));
}

@keyframes scooterBounce {
    from {
        transform: translateX(-50%) translateY(0) rotate(-1deg);
    }

    to {
        transform: translateX(-50%) translateY(-12px) rotate(2deg);
    }
}

.moto-wheel {
    transform-origin: center;
    transform-box: fill-box;
    animation: motoWheel 0.3s linear infinite;
}

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

/* Hatalmas háttérszöveg kezelése text-on-text ellen */
.dc-big-text {
    position: absolute;
    font-family: var(--ff-title);
    font-size: clamp(4rem, 10vw, 8rem) !important;
    color: rgba(0, 0, 0, 0.08);
    letter-spacing: -0.02em;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0 !important;
    opacity: 0.04 !important;
}

.dc-over {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
}

.dc-h2 {
    font-family: var(--ff-title);
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.88;
    color: var(--blk);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.dc-sub {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

/* ░░░░ REVIEWS ░░░░ */
.reviews-section {
    background: var(--blk);
    padding: 7rem 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.rc {
    background: var(--blk3);
    border: 1px solid rgba(247, 242, 214, 0.06);
    border-radius: 20px;
    padding: 2.2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.4s var(--ease);
}

.rc.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.rc.rc-featured {
    background: linear-gradient(135deg, #151300, #1e1a00);
    border-color: rgba(255, 184, 0, 0.18);
}

.rc:hover {
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.rc-stars {
    color: var(--y);
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.9rem;
}

.rc-text {
    font-size: 0.9rem;
    color: var(--cream2);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.4rem;
}

.rc-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rc-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--y);
    color: var(--blk);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.rc-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--cream);
}

.rc-author span {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ░░░░ CONTACT ░░░░ */
.contact-section {
    background: var(--blk2);
    padding: 7rem 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 700px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ci-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(247, 242, 214, 0.07);
}

.ci-item:last-of-type {
    border-bottom: none;
}

.ci-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.ci-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 0.4rem;
}

.ci-item p {
    font-size: 0.9rem;
    color: var(--cream2);
    line-height: 1.6;
}

.ci-phone {
    font-family: var(--ff-title);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--y);
    display: block;
    margin-top: 0.3rem;
    transition: letter-spacing 0.3s;
}

.ci-item a:not(.ci-phone) {
    font-size: 0.83rem;
    color: var(--y);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.ci-item a:not(.ci-phone):hover {
    border-bottom-color: var(--y);
}

.ci-hours {
    font-family: var(--ff-title);
    font-size: 1.4rem;
    color: var(--y);
    letter-spacing: 0.05em;
}

.contact-form {
    background: var(--blk3);
    border: 1px solid rgba(247, 242, 214, 0.07);
    border-radius: 24px;
    padding: 2.8rem;
}

.contact-form h3 {
    font-family: var(--ff-title);
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.cf-sub {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-form label {
    display: block;
    margin-bottom: 1.2rem;
}

.contact-form label span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 0.45rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(247, 242, 214, 0.1);
    border-radius: 10px;
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    transition: border-color 0.25s, background 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 184, 0, 0.5);
    background: rgba(255, 184, 0, 0.03);
}

.cf-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ░░░░ FOOTER ░░░░ */
.footer {
    background: var(--blk);
    border-top: 1px solid rgba(247, 242, 214, 0.05);
    padding: 2.5rem 0;
}

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

.ft-logo {
    height: 48px;
    width: auto;
    filter: invert(1) brightness(2);
    opacity: 0.7;
}

.ft-copy {
    font-size: 0.78rem;
    color: var(--muted);
}

.ft-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247, 242, 214, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cream);
    transition: background 0.2s, border-color 0.2s, transform 0.3s var(--ease-back);
}

/* ░░░░ RESPONSIVE (TEXT-ON-TEXT JAVÍTÁSOKKAL) ░░░░ */
@media(max-width:1100px) {
    .about-inner {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
    }

    .about-inner .about-num {
        grid-row: 1;
        grid-column: 1;
    }

    .about-txt {
        grid-column: 2;
        grid-row: 1;
    }

    .about-stats {
        grid-column: 1/3;
        grid-row: 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-chips {
        grid-column: 1/3;
        grid-row: 3;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-med,
    .bento-sm {
        grid-column: span 1;
    }
}

@media(max-width:900px) {
    .highlight-menu {
        display: none !important;
    }

    /* Ne takarjon mobilon */
    .nav-right-actions {
        z-index: 1100;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 90px;
    }

    .hero-left {
        padding: 4rem 2rem 2rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-dish-wrap {
        width: 280px;
        height: 380px;
    }

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

    .nav-center {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

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

    .mlb-panel {
        border-radius: 0;
        width: 100%;
        margin: 0;
    }

    .mlb {
        align-items: center;
    }

    .mpb-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .mpb-images {
        flex-direction: row !important;
        width: 100% !important;
    }
}

@media(max-width:768px) {

    /* Hero badge zsugorítása text-on-text ellen */
    .hero-badge,
    .corner-badge {
        transform: scale(0.65) !important;
        right: -10px !important;
        top: -10px !important;
        z-index: 10 !important;
    }

    .hero-left {
        padding: 6rem 1.5rem 2rem !important;
    }

    .mpb-images img {
        width: 50% !important;
        height: auto !important;
        aspect-ratio: 1/1;
    }
}

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

    .bento-med,
    .bento-sm {
        grid-column: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-head {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .hero-stats-strip {
        display: none;
    }
}

/* 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;
        /* Since it might overlap with iframe content if no header, better keep it visible or rely on Foodbooking's own header */
        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;
    }
}