/**
 * Dosa & Curry Indian Restaurant — Main Stylesheet
 * Brand: Orange #F58220 | Green #6CC24A | Cream #FFF8F0
 */

:root {
    --color-primary: #F58220;
    --color-primary-dark: #D96E10;
    --color-secondary: #6CC24A;
    --color-secondary-dark: #57A83A;
    --color-brown: #5C3D2E;
    --color-cream: #FFF8F0;
    --color-gray: #F7F7F7;
    --color-text: #2B2B2B;
    --color-text-dark: #151515;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --shadow-soft: 0 8px 30px rgba(43, 43, 43, 0.08);
    --shadow-card: 0 12px 40px rgba(245, 130, 32, 0.12);
    --radius-lg: 1.25rem;
    --transition: 0.3s ease;
    --navbar-height: 104px;
    --offer-bar-height: 38px;
    --header-total: calc(var(--offer-bar-height) + var(--navbar-height));
    --navbar-glass: rgba(255, 255, 255, 0.72);
    --navbar-glass-scrolled: rgba(255, 255, 255, 0.92);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.page-title,
.hero-title {
    font-family: var(--font-heading);
    color: var(--color-text);
}

/* ── Offer bar ── */
.offer-bar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1040;
    line-height: 1.4;
}

.page-home .offer-bar {
    flex-shrink: 0;
}

/* ── Navbar — frosted white glass (see-through, not invisible) ── */
.navbar {
    background: var(--navbar-glass) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 24px rgba(43, 43, 43, 0.06) !important;
    padding: 0.6rem 0;
    z-index: 1030;
}

.navbar-brand.brand-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    text-decoration: none;
    padding: 0;
    margin-right: 0.75rem;
    max-width: calc(100% - 148px);
}

.brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.brand-word-dosa {
    color: var(--color-primary);
}

.brand-word-amp {
    color: var(--color-brown);
    margin: 0 0.18em;
    font-weight: 500;
}

.brand-word-curry {
    color: var(--color-secondary-dark);
}

@media (max-width: 1199px) {
    .brand-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .navbar-brand.brand-mark {
        max-width: none;
        margin-right: 1rem;
    }
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text);
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 700;
    color: var(--color-text-dark) !important;
    padding: 0.4rem 0.8rem !important;
    position: relative;
    transition: color var(--transition);
}

@media (max-width: 1199px) {
    .navbar-collapse {
        flex-basis: 100%;
        margin-top: 0.75rem;
        padding: 0.75rem 1rem 1rem;
        border-radius: var(--radius-lg);
        background: var(--navbar-glass-scrolled);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: var(--shadow-soft);
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    right: 0.8rem;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.navbar .btn-primary.btn-sm {
    padding: 0.35rem 1rem;
    font-size: 0.8125rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: 0;
    padding: 0.35rem 0.45rem;
    min-width: 40px;
    min-height: 40px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text);
    opacity: 0.45;
    line-height: 1;
}

.lang-btn:hover,
.lang-btn.is-active {
    color: var(--color-primary);
    opacity: 1;
}

.lang-sep {
    color: var(--color-brown);
    opacity: 0.35;
    font-size: 0.75rem;
    padding: 0 0.05rem;
}

/* ── Buttons ── */
.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.35);
}

.btn-secondary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 194, 74, 0.35);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
}

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

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ── Sections ── */
.section-padding {
    padding: 5rem 0;
}

.section-white {
    background: var(--color-white);
}

.section-cream {
    background: var(--color-cream);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--color-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-text {
    color: #555;
    font-size: 1.05rem;
}

.text-accent {
    color: var(--color-secondary) !important;
}

.bg-accent-soft {
    background: rgba(108, 194, 74, 0.15);
    color: var(--color-secondary-dark);
    font-weight: 500;
}

/* ── Hero ── */
.hero-section {
    position: relative;
    height: 100svh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

/*
 * Homepage hero — sits below header (no overlap).
 * Video fills the hero area only; nothing hidden under the navbar.
 */
.page-home .hero-section {
    height: calc(100vh - var(--header-total));
    height: calc(100svh - var(--header-total));
    min-height: 420px;
    margin-top: 0;
    padding: 0;
}

.page-home .hero-content {
    padding: 2rem 0;
}

.page-home .hero-video-bg {
    object-position: center top;
}

/* Video background — fills full hero frame, never cropped on sides */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    /* Force hardware acceleration for smooth playback in Chrome */
    transform: translateZ(0);
    will-change: transform;
}

/* Dark overlay so text is always readable over any video frame */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(15, 8, 2, 0.75) 0%,
        rgba(40, 20, 5, 0.62) 50%,
        rgba(245, 130, 32, 0.22) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
    color: var(--color-white);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 194, 74, 0.9);
    color: var(--color-white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    opacity: 0.95;
    max-width: 640px;
    margin: 0 auto 2rem;
}

/* Hero on mobile */
@media (max-width: 768px) {
    :root {
        --navbar-height: 94px;
    }

    .hero-section {
        min-height: 500px;
    }

    .page-home .hero-section {
        min-height: 380px;
    }
}

/* ── About section video ── */
.about-video-wrap {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(43, 43, 43, 0.18);
    aspect-ratio: 4 / 3;
    background: #1a1a1a;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
}

/* Subtle gradient at the bottom for the tag overlay */
.about-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(15,8,2,0.65) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.about-video-tag {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(245,130,32,0.4);
}

/* ── Page hero (inner pages) ── */
.page-hero {
    padding: 4rem 0 3rem;
}

.page-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
}

/* About page preview card — same 800×600 layout as the old SVG */
.about-preview-card {
    width: 100%;
    aspect-ratio: 800 / 600;
    background: var(--color-cream);
    padding: 5%;
}

.about-preview-inner {
    height: 100%;
    background: rgba(245, 130, 32, 0.15);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 22%;
}

.about-preview-photo {
    width: 22.22%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(43, 43, 43, 0.12);
}

.about-preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-preview-title {
    margin: 12% 0 0;
    font-size: clamp(1.05rem, 3.2vw, 2.25rem);
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
    padding: 0 0.75rem;
    line-height: 1.2;
}

.about-preview-caption {
    margin: 0.35rem 0 0;
    font-size: clamp(0.7rem, 1.6vw, 1.125rem);
    color: #666;
    text-align: center;
    padding: 0 0.75rem;
}

/* ── Food cards ── */
.food-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.food-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--color-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
    display: block;
}

.food-card:hover .food-card-img img {
    transform: scale(1.04);
}

.food-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.food-card-body {
    padding: 1.25rem 1.5rem;
}

.food-card-body h5 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

/* ── What We Offer — full-viewport split ── */

/*
 * Section height = viewport minus sticky navbar (~75px).
 * This ensures the entire section fits on screen when scrolled to it.
 */
.offer-fullscreen {
    height: calc(100vh - 75px);
    min-height: 580px;
    max-height: 900px;
    overflow: hidden;
    background: var(--color-white);
}

.offer-fullscreen-inner {
    display: flex;
    height: 100%;
}

/* ── Left: video — full panel height, vertically centered ── */
.offer-left-panel {
    position: relative;
    width: 40%;
    flex-shrink: 0;
    overflow: hidden;
    background: #111;
}

.offer-left-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translateZ(0);
}

.offer-left-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 5, 1, 0.30);
}

/* ── Right: heading + circular offer cards — fill panel ── */
.offer-right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 1.75rem;
    background: var(--color-white);
    overflow: hidden;
    min-height: 0;
}

.offer-right-heading {
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    text-align: center;
}

.offer-right-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    font-weight: 700;
    margin: 0.25rem 0 0;
    color: var(--color-text);
}

/* Three large circles — fill remaining height */
.offer-circles {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    min-height: 0;
    padding: 0.25rem 0;
}

.offer-circle-card {
    flex: 1 1 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    min-width: 0;
}

.offer-circle-inner {
    height: 100%;
    width: auto;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid rgba(245, 130, 32, 0.18);
    box-shadow: 0 8px 28px rgba(43, 43, 43, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1rem, 2.5vw, 1.75rem);
    transition: var(--transition);
}

.offer-circle-card:hover .offer-circle-inner {
    border-color: var(--color-secondary);
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(108, 194, 74, 0.18);
}

.offer-circle-inner .offer-icon {
    width: clamp(52px, 6vw, 72px);
    height: clamp(52px, 6vw, 72px);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    margin: 0 0 clamp(0.5rem, 1.2vw, 0.85rem);
    flex-shrink: 0;
}

.offer-circle-card:hover .offer-icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.offer-circle-inner h5 {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--color-text);
    line-height: 1.2;
}

.offer-circle-inner p {
    font-size: clamp(0.82rem, 1.05vw, 1rem);
    color: #666;
    margin: 0;
    line-height: 1.4;
    max-width: 92%;
}

/* Legacy grid classes — kept for reference elsewhere */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.75rem;
    flex: 1;
    min-height: 0;
}

.offer-grid-card {
    background: var(--color-white);
    border: 1.5px solid rgba(245, 130, 32, 0.14);
    border-radius: 0.85rem;
    padding: 1rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(43,43,43,0.06);
    transition: var(--transition);
    min-height: 0;
}

.offer-grid-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(108,194,74,0.14);
}

.offer-grid-card .offer-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.offer-grid-card:hover .offer-icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.offer-grid-card h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--color-text);
    line-height: 1.25;
}

.offer-grid-card p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    line-height: 1.35;
}

/* ── Mobile: stack, show short video banner on top ── */
@media (max-width: 991px) {
    .offer-fullscreen {
        height: auto;
        max-height: none;
        min-height: unset;
    }
    .offer-fullscreen-inner {
        flex-direction: column;
    }
    .offer-left-panel {
        width: 100%;
        height: 260px;
        flex-shrink: 0;
    }
    .offer-right-panel {
        padding: 1.5rem 1rem 1.75rem;
    }
    .offer-circles {
        gap: 0.75rem;
    }
    .offer-circle-inner {
        padding: 0.85rem;
    }
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 0.75rem;
    }
    .offer-grid-card {
        padding: 1rem;
    }
}

/* ── Offer / service cards ── */
.offer-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.section-cream .offer-card {
    background: var(--color-white);
}

.offer-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

/* Glass card variant — kept for potential reuse */

.offer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(108, 194, 74, 0.12);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.offer-card:hover .offer-icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.offer-card h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.offer-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ── Reviews ── */
.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-card);
}

.review-stars {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-author strong {
    display: block;
    margin-top: 1rem;
}

/* ── Gallery ── */
.gallery-thumb,
.gallery-card {
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-card);
}

.gallery-thumb img,
.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-card-caption {
    background: var(--color-white);
}

/* ── Gallery train — infinite horizontal scroll ── */
.gallery-train-section {
    overflow: hidden;
}

.gallery-train {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
}

.gallery-train-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
}

.gallery-train-forward {
    animation: galleryTrainLeft 50s linear infinite;
}

.gallery-train-reverse {
    animation: galleryTrainRight 55s linear infinite;
}

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

@keyframes galleryTrainLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes galleryTrainRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.gallery-train-item {
    flex-shrink: 0;
    width: clamp(220px, 24vw, 320px);
    height: clamp(160px, 18vw, 220px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(43, 43, 43, 0.12);
    border: 2px solid rgba(245, 130, 32, 0.12);
    background: #fff;
}

.gallery-train-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-train-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 767px) {
    .gallery-train {
        gap: 0.85rem;
    }
    .gallery-train-track {
        gap: 0.85rem;
    }
    .gallery-train-item {
        width: 240px;
        height: 170px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-train-forward,
    .gallery-train-reverse {
        animation: none;
    }
    .gallery-train {
        mask-image: none;
        -webkit-mask-image: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .gallery-train-track {
        flex-wrap: nowrap;
    }
    .gallery-train-item {
        scroll-snap-align: start;
    }
}

/* ── PDF-style menu spreads (one photo per section) ── */
.menu-cover {
    position: relative;
    background: #1a1a1a;
}

.menu-cover img {
    width: 100%;
    height: min(52vh, 520px);
    object-fit: cover;
    display: block;
}

.menu-cover-bar {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1.75rem 1rem 1.5rem;
    border-top: 6px solid #EF7F1B;
    border-bottom: 8px solid #ADC725;
}

.menu-cover-brand {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
}

.menu-cover-brand span {
    color: #ADC725;
}

.menu-cover-tag {
    color: #EF7F1B;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin: 0.15rem 0 1rem;
}

.menu-cover-line {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin: 0;
}

.menu-cover-sub {
    font-size: 0.78rem;
    color: #cfcfcf;
    margin: 0.35rem 0 0;
}

.menu-allergen {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem;
}

.menu-allergen-card {
    max-width: 640px;
    background: rgba(20, 16, 12, 0.72);
    color: #fff;
    text-align: center;
    padding: 2rem 1.75rem;
}

.menu-allergen-card h2 {
    color: #F5C518;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.menu-allergen-card p {
    margin: 0;
    line-height: 1.7;
}

.menu-allergen-prep {
    margin-top: 1.25rem !important;
    color: #F5C518;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-spread {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 720px;
}

.menu-spread.photo-left .menu-spread-photo {
    order: -1;
}

.menu-spread-copy {
    padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem) 1.4rem;
    color: #1b1b1b;
    display: flex;
    flex-direction: column;
}

.theme-orange .menu-spread-copy {
    background: #EF7F1B;
}

.theme-green .menu-spread-copy {
    background: #ADC725;
}

.menu-spread-block {
    scroll-margin-top: 5.5rem;
}

.menu-spread-block + .menu-spread-block {
    margin-top: 1.75rem;
}

.menu-ribbon {
    text-align: center;
    margin: 0 0 1.1rem;
}

.menu-ribbon span {
    display: inline-block;
    background: #fff;
    color: #111;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1.8rem;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
}

.menu-spread-sub {
    text-align: center;
    font-size: 0.86rem;
    line-height: 1.5;
    margin: -0.35rem 0 1.15rem;
    color: #2b2b2b;
}

.menu-group-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin: 1.15rem 0 0.6rem;
}

.menu-spread-dish {
    margin-bottom: 0.95rem;
}

.menu-spread-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-spread-line h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #161616;
}

.menu-spread-line h3 em {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 0.3rem;
}

.menu-spread-line span {
    font-weight: 700;
    white-space: nowrap;
    font-size: 1.05rem;
}

.menu-spread-dish p {
    margin: 0.15rem 0 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #2a2a2a;
}

.menu-spread-note {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
}

.menu-spread-foot {
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.72rem;
    color: rgba(0, 0, 0, 0.7);
}

.menu-spread-photo {
    min-height: 320px;
    overflow: hidden;
    background: #111;
}

.menu-spread-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .menu-spread,
    .menu-spread.photo-left {
        grid-template-columns: 1fr;
    }

    .menu-spread-photo {
        order: -1;
        height: 280px;
    }

    .menu-spread-photo img {
        height: 280px;
    }
}

/* ── Printed-menu layout (matches restaurant PDF) ── */
.menu-paper {
    background: #f7f1e6;
}

.pdf-menu-page {
    background: #fffdf8;
    border: 1px solid rgba(92, 61, 46, 0.12);
    border-radius: 4px;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.75rem) 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(43, 43, 43, 0.06);
    scroll-margin-top: 5.5rem;
}

.pdf-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brown);
    margin-bottom: 0.75rem;
}

.pdf-cat-title,
.pdf-allergen h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-brown);
    text-align: center;
    margin: 0 0 0.35rem;
}

.pdf-cat-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: #6b5344;
    font-size: 0.95rem;
}

.pdf-allergen p {
    max-width: 720px;
    margin: 0 auto 1rem;
    text-align: center;
    color: #4a3b32;
    line-height: 1.7;
}

.pdf-prep {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-dark) !important;
    font-size: 0.9rem !important;
}

.pdf-group-title {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(245, 130, 32, 0.35);
    padding-bottom: 0.35rem;
    margin: 1.25rem 0 0.35rem;
}

.pdf-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    row-gap: 1.15rem;
}

.pdf-dish {
    break-inside: avoid;
}

.pdf-dish-line {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pdf-dish-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #2b2118;
    flex: 0 1 auto;
}

.pdf-dots {
    flex: 1 1 auto;
    border-bottom: 1px dotted rgba(92, 61, 46, 0.35);
    min-width: 0.75rem;
    transform: translateY(-0.28rem);
}

.pdf-price {
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
    font-size: 1.05rem;
}

.pdf-dish-desc {
    margin: 0.3rem 0 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #6a5a4e;
}

.pdf-dish-note {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
}

.pdf-popular {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.08rem 0.45rem;
    border-radius: 2px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    vertical-align: middle;
}

.pdf-page-foot {
    margin: 1.75rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(92, 61, 46, 0.12);
    text-align: center;
    font-size: 0.78rem;
    color: #7a6a5c;
}

@media (max-width: 767px) {
    .pdf-menu-grid {
        grid-template-columns: 1fr;
        row-gap: 1.1rem;
    }
}
.menu-section-banner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: linear-gradient(90deg, #fff8f0 0%, #ffffff 60%);
    border-left: 5px solid var(--color-primary);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 0.85rem 1.5rem;
    box-shadow: 0 2px 12px rgba(245,130,32,0.08);
}

.menu-banner-copy {
    flex: 1;
    min-width: 0;
}

.menu-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.04em;
}

.menu-banner-subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    color: #6b6b6b;
    line-height: 1.45;
}

.menu-var-badge {
    flex-shrink: 0;
}

.menu-jump-nav {
    background: var(--color-white);
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.menu-jump-track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.85rem 0;
    scrollbar-width: thin;
}

.menu-jump-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 130, 32, 0.28);
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: var(--transition);
}

.menu-jump-chip:hover,
.menu-jump-chip:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.menu-notice {
    background: var(--color-cream);
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.75rem;
}

.menu-notice-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.menu-notice-time {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 0.85rem;
    padding: 0.95rem 1rem;
    margin-bottom: 0.75rem;
}

.menu-notice-time i {
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.menu-notice-time strong,
.menu-notice-time span {
    display: block;
}

.menu-notice-time span {
    color: #666;
    font-size: 0.9rem;
}

.menu-notice-tax {
    font-size: 0.85rem;
    color: #777;
}

.menu-category-block {
    margin-bottom: 3rem;
    scroll-margin-top: 5.5rem;
}

.menu-list {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 0.35rem 0.35rem 0.5rem;
    box-shadow: var(--shadow-soft);
}

.menu-group-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 1rem 1.15rem 0.25rem;
    margin: 0;
}

.section-cream .menu-list {
    background: var(--color-cream);
}

.menu-item-row {
    padding: 1.05rem 1.15rem;
    border-bottom: 1px dashed rgba(43, 43, 43, 0.1);
    height: 100%;
}

.menu-list .col-md-6:nth-last-child(-n+2) .menu-item-row {
    border-bottom: none;
}

@media (max-width: 767px) {
    .menu-list .col-md-6:nth-last-child(-n+2) .menu-item-row {
        border-bottom: 1px dashed rgba(43, 43, 43, 0.1);
    }

    .menu-list .col-md-6:last-child .menu-item-row {
        border-bottom: none;
    }
}

.menu-item-heading {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    margin: 0;
    transition: color var(--transition);
    flex: 0 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.menu-item-row:hover .menu-item-name {
    color: var(--color-primary);
}

.menu-item-rule {
    flex: 1 1 auto;
    border-bottom: 1px dotted rgba(43, 43, 43, 0.28);
    min-width: 1.25rem;
    transform: translateY(-0.35rem);
}

.menu-item-price {
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    font-size: 1.05rem;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: #6f6f6f;
    margin: 0.35rem 0 0;
    line-height: 1.5;
}

.menu-item-note {
    display: inline-block;
    margin: 0.4rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
}

.menu-popular-pill {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    vertical-align: middle;
}

.menu-dish-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(43, 43, 43, 0.08);
    border: 1.5px solid rgba(245, 130, 32, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.menu-dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(245, 130, 32, 0.16);
    border-color: rgba(245, 130, 32, 0.3);
}

.menu-dish-photo {
    background: #fff8f0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-dish-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.menu-dish-body {
    padding: 1rem 1.15rem 1.15rem;
    flex: 1;
}

.menu-dish-body .menu-item-heading {
    gap: 0.75rem;
}

.menu-dish-body .menu-item-name {
    flex: 1 1 auto;
}

/* Two-tone category name parts */
.cat-part-1 {
    color: var(--color-primary);
    font-weight: 800;
}

.cat-sep {
    color: var(--color-text);
    font-weight: 400;
    margin: 0 0.15em;
}

.cat-part-2 {
    color: var(--color-secondary-dark);
    font-weight: 800;
}

.menu-banner-leaf {
    color: var(--color-secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.menu-banner-leaf.right {
    margin-left: auto;
}

/* ── Menu dish cards (with photos) ── */
.dish-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(43,43,43,0.08);
    transition: var(--transition);
    border: 1.5px solid rgba(245,130,32,0.1);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(245,130,32,0.18);
    border-color: rgba(245,130,32,0.3);
}

/* Image wrapper — fixed square using aspect-ratio, no cropping */
.dish-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full image visible — contain keeps entire dish in frame, no cropping */
.dish-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    transition: transform 0.45s ease;
    display: block;
}

.dish-card:hover .dish-img {
    transform: scale(1.04);
}

/* Number badge — top left */
.dish-num-badge {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    width: 28px;
    height: 28px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(108,194,74,0.4);
    z-index: 2;
    line-height: 1;
}

/* Price badge — bottom right */
.dish-price-badge {
    position: absolute;
    bottom: 0.55rem;
    right: 0.55rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(245,130,32,0.35);
    z-index: 2;
    line-height: 1.4;
}

.dish-card-body {
    padding: 0.65rem 0.85rem 0.85rem;
    border-top: 1px solid rgba(43,43,43,0.06);
    flex: 1;
}

.dish-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.15rem;
    line-height: 1.35;
}

.dish-card-note {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

/* ── Booking form ── */
.booking-card {
    background: var(--color-white);
    border: 1px solid rgba(245, 130, 32, 0.15);
}

.booking-whatsapp-banner {
    background: #f0fff4;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.booking-whatsapp-banner p {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.5;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: var(--color-white);
}

.booking-whatsapp-hint {
    color: #6b6b6b;
    font-size: 0.9rem;
    line-height: 1.45;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-card .form-select,
.booking-card .form-control {
    min-height: 48px;
}

.booking-time-field {
    position: relative;
}

.booking-time-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.75rem;
    background-image: none;
}

.booking-time-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b6b6b;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(108, 194, 74, 0.2);
}

/* ── Contact ── */
.contact-list li {
    font-size: 1.05rem;
}

.contact-list a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-list a:hover {
    color: var(--color-primary);
}

.map-wrapper iframe {
    display: block;
}

/* ── Contact card (homepage & contact-style layout) ── */
.contact-card-section {
    background: var(--color-cream);
}

.contact-card-panel {
    background: var(--color-white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(43, 43, 43, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.1);
}

.contact-card-info {
    padding: clamp(1.75rem, 3vw, 2.75rem);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0.35rem 0 1.5rem;
    color: var(--color-text);
    line-height: 1.15;
}

.contact-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--color-text);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(108, 194, 74, 0.12);
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-card-list a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

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

.contact-card-note {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-primary);
    font-weight: 500;
}

.contact-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.contact-card-actions .btn {
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    border-radius: 50px;
}

.contact-card-map {
    min-height: 360px;
    background: #eef0f2;
}

.contact-card-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-card-map {
        min-height: 320px;
    }
    .contact-card-map iframe {
        min-height: 320px;
    }
}

/* ── CTA section (legacy — kept if reused elsewhere) ── */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e86f15 50%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-white);
}

.cta-text {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* ── Brand box ── */
.brand-box {
    background: var(--color-white);
    border: 2px solid rgba(108, 194, 74, 0.25);
    box-shadow: var(--shadow-soft);
}

/* ── Footer ── */
.site-footer {
    background: var(--color-gray);
    color: var(--color-text);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.footer-text {
    color: #555;
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-divider {
    border-color: rgba(43, 43, 43, 0.1);
}

.copyright {
    font-size: 0.875rem;
    color: #777;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    color: var(--color-secondary);
    border-radius: 50%;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ── Animations ── */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Alerts ── */
.alert-success {
    background: rgba(108, 194, 74, 0.12);
    border-color: var(--color-secondary);
    color: var(--color-secondary-dark);
}

/* ── Laptop / small desktop nav — keep links from overflowing ── */
@media (min-width: 1200px) and (max-width: 1399px) {
    .nav-link {
        padding: 0.4rem 0.55rem !important;
        font-size: 0.92rem;
    }

    .brand-name {
        font-size: 1.55rem;
    }

    .navbar .btn-primary.btn-sm {
        padding: 0.35rem 0.85rem;
        font-size: 0.78rem;
    }
}

/* Phone + tablet hamburger menu (navbar expands at 1200px) */
@media (max-width: 1199px) {
    .navbar-nav {
        padding-top: 0.5rem;
    }

    .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-item.ms-xl-3 {
        margin-left: 0 !important;
        width: 100%;
        margin-top: 0.65rem;
    }

    .navbar-nav .nav-item.ms-xl-3 .btn {
        width: 100%;
        display: block;
        text-align: center;
        min-height: 44px;
        padding: 0.65rem 1rem;
    }

    .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }

    .lang-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Tablet and down */
@media (max-width: 991px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .hero-section {
        min-height: 75vh;
    }

    .page-home .hero-section {
        height: calc(100vh - var(--header-total));
        height: calc(100svh - var(--header-total));
        min-height: 380px;
    }

    .menu-item-row {
        flex-direction: column;
        gap: 0.35rem;
    }

    .menu-section-banner {
        align-items: flex-start;
    }

    .menu-item-heading {
        flex-wrap: wrap;
    }

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

    .contact-card-actions .btn {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 140px;
        text-align: center;
    }

    .page-hero {
        padding: 3rem 0 2.25rem;
    }

    .about-preview-inner {
        padding-top: 16%;
    }
}

/* Tablet portrait / large phone */
@media (max-width: 768px) {
    .contact-card-info {
        padding: 1.5rem;
    }

    .contact-card-list li {
        font-size: 0.98rem;
    }

    .food-card-body {
        padding: 1rem 1.15rem;
    }

    .food-card-body h5 {
        font-size: 1.2rem;
    }

    .site-footer .row > div {
        text-align: center;
    }

    .offer-bar {
        font-size: 0.78rem;
        padding: 0.45rem 0.75rem;
    }

    .menu-notice {
        padding: 1.15rem 1.1rem;
    }

    .menu-list {
        padding: 0.15rem;
    }

    .menu-item-row {
        padding: 0.9rem 0.85rem;
    }
}

/* Phones — stack offer cards and full-width actions */
@media (max-width: 575px) {
    .offer-bar {
        font-size: 0.72rem;
        padding: 0.45rem 0.6rem;
        line-height: 1.35;
    }

    .offer-bar span {
        display: inline-block;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        min-height: 48px;
    }

    .section-padding {
        padding: 2.75rem 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .contact-card-actions {
        flex-direction: column;
    }

    .contact-card-actions .btn {
        width: 100%;
        flex: 1 1 auto;
    }

    .contact-card-title {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .booking-card .btn-lg,
    .btn-lg {
        width: 100%;
        min-height: 48px;
    }

    .offer-left-panel {
        height: 180px;
    }

    .offer-circles {
        flex-direction: column;
        gap: 1rem;
    }

    .offer-circle-card {
        flex: 1 1 auto;
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .offer-circle-inner {
        width: min(100%, 260px);
        height: auto;
        aspect-ratio: 1;
    }

    .about-preview-card {
        aspect-ratio: auto;
        min-height: 260px;
    }

    .about-preview-inner {
        padding: 1.5rem 0.75rem 1.25rem;
    }

    .about-preview-photo {
        width: 30%;
        max-width: 100px;
    }

    .about-preview-title {
        margin-top: 1rem;
        font-size: 1.2rem;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Safe areas for notched phones (iPhone, etc.) */
@supports (padding: max(0px)) {
    .offer-bar {
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }

    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Reduce hover motion on touch devices */
@media (hover: none) and (pointer: coarse) {
    .food-card:hover,
    .dish-card:hover,
    .offer-card:hover,
    .offer-grid-card:hover {
        transform: none;
    }

    .food-card:hover .food-card-img img,
    .dish-card:hover .dish-img {
        transform: none;
    }
}
