/* ═══════════════════════════════════════════════════════════════════════════
   styles.css — L'Histoire des Épices (Modern Redesign)
   Fonts: Jura (body) + Pinyon Script (decorative)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ───────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --primary: #5b0617;
    --primary-hover: #7a1f2b;
    --primary-light: #8a2a3d;
    --saffron: #c9a55c;
    --saffron-light: #e0c88a;
    --saffron-dark: #a88940;
    --cream: #faf8f5;
    --surface: #ffffff;
    --dark: #1a1a1a;
    --muted: #6b6b6b;
    --light-gray: #f0ede8;
    --border: rgba(91, 6, 23, 0.1);
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;

    /* Typography */
    --font-script: 'Felipa', serif;
    --font-body: 'Jura', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-py: 6rem;
    --section-py-mobile: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(201, 165, 92, 0.3);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

/* ─── Performance Optimizations ──────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Content containment for better rendering */
section {
    contain: layout style;
}

/* GPU acceleration for smooth scrolling */
.hero,
.specialties,
.menu-section,
.heritage,
.events,
.contact {
    will-change: transform;
    transform: translateZ(0);
}

/* Image optimization */
img {
    content-visibility: auto;
}

img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img:not([data-src]) {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ─── Container ───────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ─── Skip Link ───────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s var(--ease);
}

.skip-link:focus {
    top: 0;
}

/* ─── Focus States ────────────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease);
}

#site-header.scrolled {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* Navbar text colors - transparent state (over hero) */
#site-header:not(.scrolled) #nav-brand-text {
    color: white !important;
}

#site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

#site-header:not(.scrolled) .nav-link:hover {
    color: var(--saffron);
}

#site-header:not(.scrolled) .lang-switch__label {
    color: rgba(255, 255, 255, 0.7);
}

#site-header:not(.scrolled) .lang-switch__label--fr,
#site-header:not(.scrolled) .lang-switch__label--en {
    color: rgba(255, 255, 255, 0.7);
}

#site-header:not(.scrolled) .hamburger span {
    background: white;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    height: 72px;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.2s var(--ease);
    flex-shrink: 1;
    min-width: 0;
}

.nav-brand:hover {
    opacity: 0.8;
}

#nav-brand-text {
    font-size: 1.1rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 480px) {
    #nav-brand-text {
        font-size: 1.25rem !important;
    }
}

@media (min-width: 768px) {
    #nav-brand-text {
        font-size: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    #nav-brand-text {
        font-size: 1.75rem !important;
    }
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .nav-logo {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 768px) {
    .nav-logo {
        width: 44px;
        height: 44px;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s var(--ease);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Language Toggle Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--muted);
    transition: color 0.3s var(--ease);
    user-select: none;
}

.lang-switch__label--fr.active,
.lang-switch__label--en.active {
    color: var(--primary);
}

.lang-switch__toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}

.lang-switch__toggle:hover {
    border-color: var(--saffron);
}

.lang-switch__toggle:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

.lang-switch__slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--saffron);
    border-radius: 50%;
    transition: transform 0.3s var(--ease-bounce);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-switch__toggle[aria-pressed='true'] .lang-switch__slider {
    transform: translateX(20px);
}

.lang-switch__toggle[aria-pressed='true'] {
    background: rgba(201, 165, 92, 0.2);
    border-color: var(--saffron);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: var(--surface);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu:not([hidden]) {
    transform: translateX(0);
}

.mobile-menu[hidden] {
    display: block;
    visibility: hidden;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link-mobile {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s var(--ease);
}

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

.mobile-nav-wa {
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(91, 6, 23, 0.95) 0%, rgba(91, 6, 23, 0.85) 100%),
        url('../hero/hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

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

.hero-logo {
    width: 160px;
    height: auto;
    margin: 0 auto 2rem;
    margin-top: -3rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
    .hero-logo {
        width: 200px;
        margin-top: 2rem;
        margin-bottom: 2.5rem;
    }
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.hero-headline .font-script {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-headline .font-body {
    font-size: 1.5rem;
    display: block;
}

@media (min-width: 768px) {
    .hero-headline .font-script {
        font-size: 5rem;
    }
    .hero-headline .font-body {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline .font-script {
        font-size: 6rem;
    }
    .hero-headline .font-body {
        font-size: 2.5rem;
    }
}

.hero-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* Hero Features - inline with content */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--saffron);
}

.hero-feature .material-symbols-outlined {
    font-size: 1rem;
    color: var(--saffron);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Mobile hero adjustments */
@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 2rem;
    }

    .hero-content {
        padding: 0.1rem 0.5rem;
    }

    .hero-logo {
        width: 180px;
        margin-bottom: 1.5rem;
        margin-top: 0;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        margin-bottom: 1rem;
        letter-spacing: 0.15em;
    }

    .hero-headline {
        margin-bottom: 1rem;
    }

    .hero-headline .font-script {
        font-size: 2.75rem;
    }

    .hero-headline .font-body {
        font-size: 1.15rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-features {
        gap: 0.6rem;
        margin-bottom: 2rem;
    }

    .hero-feature {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    .hero-feature .material-symbols-outlined {
        font-size: 0.95rem;
    }

    .hero-ctas {
        gap: 1rem;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ─── Animations ──────────────────────────────────────────────────────────── */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--saffron);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(201, 165, 92, 0.3);
}

.btn-primary:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 165, 92, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(91, 6, 23, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.features {
    padding: 5rem 0;
    background: var(--surface);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--saffron);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    color: white;
}

.feature-icon .material-symbols-outlined {
    font-size: 32px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPECIALTIES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.specialties {
    padding: var(--section-py) 0;
    background: var(--cream);
}

@media (max-width: 767px) {
    .specialties {
        padding: var(--section-py-mobile) 0;
    }
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.specialty-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

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

.specialty-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.specialty-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.specialty-card:hover .specialty-card__image img {
    transform: scale(1.08);
}

.specialty-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--saffron);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.specialty-card__badge--new {
    background: var(--primary);
    color: white;
}

.specialty-card__spice {
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.specialty-card__content {
    padding: 1.5rem;
}

.specialty-card__name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.specialty-card__desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specialty-card__price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.specialty-card__placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.menu-section {
    padding: var(--section-py) 0;
    background: var(--surface);
}

@media (max-width: 767px) {
    .menu-section {
        padding: var(--section-py-mobile) 0;
    }
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.menu-filter {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.menu-filter:hover {
    border-color: var(--saffron);
    color: var(--primary);
}

.menu-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-group {
    margin-bottom: 2rem;
}

.menu-group--hidden {
    display: none;
}

.menu-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--saffron);
}

.menu-group-header h3 {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-group-header .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--saffron);
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
}

.menu-item:hover {
    border-color: var(--saffron);
    box-shadow: var(--shadow-sm);
}

.menu-item__image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item__placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--muted);
}

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

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.menu-item__name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.menu-item__price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.menu-item__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.badge {
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge--signature {
    background: var(--saffron);
    color: var(--dark);
}

.badge--new {
    background: var(--primary);
    color: white;
}

.badge--veg {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge--halal {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
}

.badge--spicy {
    background: #fee2e2;
    color: #991b1b;
}

.menu-item__desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.menu-item__calories {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.2rem 0.5rem;
    background: rgba(201, 165, 92, 0.15);
    border-radius: var(--radius-full);
}

.menu-item__allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.allergen-tag {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    background: var(--light-gray);
    color: var(--muted);
    border-radius: 3px;
}

.menu-footer {
    margin-top: 3rem;
    text-align: center;
}

.menu-footnote {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.allergen-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

.allergen-link:hover {
    color: var(--saffron-dark);
}

.allergen-link .material-symbols-outlined {
    font-size: 1.1rem;
}

.download-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background: var(--primary);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    margin-top: 1rem;
    transition: all 0.2s var(--ease);
}

.download-menu-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.download-menu-btn .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERITAGE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.heritage {
    position: relative;
    padding: var(--section-py) 0;
    background: var(--primary);
    color: white;
    overflow: hidden;
}

@media (max-width: 767px) {
    .heritage {
        padding: var(--section-py-mobile) 0;
    }
}

.heritage-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 165, 92, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 165, 92, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.heritage-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .heritage-content {
        grid-template-columns: 1fr 1fr;
    }
}

.heritage-text {
    order: 2;
}

@media (min-width: 768px) {
    .heritage-text {
        order: 1;
    }
}

.heritage-title {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .heritage-title {
        font-size: 4rem;
    }
}

.heritage-paragraphs p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.heritage-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.heritage-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(201, 165, 92, 0.15);
    border: 1px solid rgba(201, 165, 92, 0.25);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 100px;
}

.stat-value {
    font-family: var(--font-script);
    font-size: 2.25rem;
    color: var(--saffron);
    line-height: 1;
}

.stat-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
    text-align: center;
}

@media (max-width: 640px) {
    .heritage-stats {
        justify-content: center;
    }

    .heritage-stat {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }
}

.heritage-image-wrap {
    order: 1;
}

@media (min-width: 768px) {
    .heritage-image-wrap {
        order: 2;
    }
}

.heritage-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--saffron);
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 165, 92, 0.3) 0%, rgba(201, 165, 92, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--saffron);
}

/* ═══════════════════════════════════════════════════════════════════════════
   EVENTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.events {
    padding: var(--section-py) 0;
    background: var(--cream);
}

@media (max-width: 767px) {
    .events {
        padding: var(--section-py-mobile) 0;
    }
}

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

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.event-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.event-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.event-card:hover .event-card__image {
    transform: scale(1.08);
}

.event-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(91, 6, 23, 0.9) 0%,
        rgba(91, 6, 23, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

.event-card__label {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .event-card__label {
        font-size: 1.75rem;
    }
}

.event-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contact {
    padding: var(--section-py) 0;
    background: var(--surface);
}

@media (max-width: 767px) {
    .contact {
        padding: var(--section-py-mobile) 0;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--saffron);
}

.contact-card--alt {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-color: rgba(201, 165, 92, 0.3);
}

.contact-card--alt:hover {
    border-color: var(--saffron);
}

.contact-card--whatsapp {
    background: linear-gradient(135deg, #dcf8c6 0%, #e8f5e9 100%);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card--whatsapp:hover {
    border-color: var(--whatsapp);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.contact-card__icon .material-symbols-outlined {
    font-size: 28px;
}

.contact-card--alt .contact-card__icon {
    background: var(--saffron);
}

.contact-card__icon--whatsapp {
    background: var(--whatsapp);
}

.contact-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.contact-card__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-card__value {
    display: block;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.contact-meta {
    text-align: center;
    margin-top: 2.5rem;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.contact-location {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
    padding: 3rem 0 2rem;
    background: white;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: var(--primary);
    max-width: 500px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
}

.fab-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    animation: pulse-wa 2s infinite;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.fab-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-wa {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow:
            0 4px 30px rgba(37, 211, 102, 0.6),
            0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONSTRUCTION SCREEN
   ═══════════════════════════════════════════════════════════════════════════ */

.construction-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--cream);
}

.construction-screen[hidden] {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .animate-fade-up {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-saffron {
    color: var(--saffron);
}
.text-primary {
    color: var(--primary);
}
.text-muted {
    color: var(--muted);
}

.font-script {
    font-family: var(--font-script);
}
.font-body {
    font-family: var(--font-body);
}
