/* ==========================================
   AURELIA RESTAURANT — Main Stylesheet
   ==========================================
   Version: 1.0
   Design: Dark Sophisticated + Gold/Cream Accents
   
   Table of Contents:
   ------------------
   1.  Design Tokens (Custom Properties)
   2.  Reset & Base Styles
   3.  Utilities
   4.  Typography System
   5.  Button System
   6.  Section Patterns
   7.  Form Elements
   8.  Navigation
   9.  Mobile Menu
   10. Hero Section
   11. About Preview
   12. Featured Dishes
   13. Experience Banner & Stats
   14. Testimonials Slider
   15. Reservation CTA
   16. Newsletter
   17. Footer
   18. Back to Top
   19. Page Header (Inner Pages)
   20. Menu Page
   21. About Page
   22. Reservations Page
   23. Contact Page
   24. Lightbox
   25. Keyframe Animations
   26. Scroll Reveal System
   27. Responsive — ≤1200px
   28. Responsive — ≤1024px
   29. Responsive — ≤768px
   30. Responsive — ≤480px
========================================== */


/* ------------------------------------------
   1. DESIGN TOKENS (Custom Properties)
------------------------------------------ */
:root {
    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #161616;

    /* Accent Colors */
    --gold: #c8a97e;
    --gold-light: #d4b896;
    --gold-dark: #a88c5c;
    --gold-glow: rgba(200, 169, 126, 0.25);
    --cream: #f5f0e8;
    --off-white: #faf8f5;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e8e0d8;
    --text-muted: #a09890;
    --text-dark: #2c2c2c;

    /* Overlays & Borders */
    --overlay-dark: rgba(10, 10, 10, 0.70);
    --overlay-darker: rgba(10, 10, 10, 0.80);
    --border-subtle: rgba(200, 169, 126, 0.15);
    --border-gold: rgba(200, 169, 126, 0.30);

    /* Feedback Colors */
    --success: #2ecc71;
    --error: #e74c3c;
    --error-bg: rgba(231, 76, 60, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Times New Roman', serif;

    /* Spacing Scale (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 24px;
    --nav-height: 90px;
    --nav-height-scrolled: 70px;
    --section-padding: 120px;

    /* Borders & Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-reveal: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(200, 169, 126, 0.15);
}


/* ------------------------------------------
   2. RESET & BASE STYLES
------------------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height-scrolled);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--gold-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}


/* ------------------------------------------
   3. UTILITIES
------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to Content Link */
.skip-link {
    position: fixed;
    top: -100%;
    left: var(--space-md);
    z-index: 100000;
    padding: var(--space-sm) var(--space-md);
    background: var(--gold);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
    color: var(--bg-primary);
}


/* ------------------------------------------
   4. TYPOGRAPHY SYSTEM
------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

p:last-child {
    margin-bottom: 0;
}


/* ------------------------------------------
   5. BUTTON SYSTEM
------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Primary Button — Gold filled */
.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Outline Button — Gold border, transparent fill */
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 126, 0.08);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

/* Size Variants */
.btn-lg {
    padding: 18px 40px;
    font-size: 0.875rem;
    letter-spacing: 2.5px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

/* Text Link with Arrow */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: var(--space-lg);
}

.btn-link i {
    transition: transform var(--transition-base);
}

.btn-link:hover {
    color: var(--gold-light);
}

.btn-link:hover i {
    transform: translateX(6px);
}


/* ------------------------------------------
   6. SECTION PATTERNS
------------------------------------------ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Alternating section backgrounds */
.section:nth-of-type(even) {
    background-color: var(--bg-secondary);
}

/* Section Label — Small caps above title */
.section-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.0625rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.section-label.light {
    color: var(--gold-light);
}

/* Section Title */
.section-title {
    margin-bottom: var(--space-lg);
}

.section-title.light {
    color: var(--text-white);
}

/* Section Divider — Gold accent line */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.section-divider.light {
    background: var(--gold-light);
}

/* Optional ornament on divider */
.section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    font-size: 6px;
    color: var(--gold);
    line-height: 1;
}

.section-divider.light::after {
    color: var(--gold-light);
}

/* Section Header Block (centered intro) */
.section-header {
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-description {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-top: var(--space-md);
}


/* ------------------------------------------
   7. FORM ELEMENTS
------------------------------------------ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 300;
    transition: all var(--transition-base);
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a09890' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Form Validation States */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-error-msg {
    display: none;
    font-size: 0.8125rem;
    color: var(--error);
    margin-top: var(--space-xs);
}

.form-group.error .form-error-msg {
    display: block;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: var(--space-2xl);
    animation: fadeInUp 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: var(--space-md);
    display: block;
}

.form-success h3 {
    margin-bottom: var(--space-sm);
}


/* ------------------------------------------
   8. NAVIGATION
------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    height: var(--nav-height-scrolled);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition-base);
}

.nav-logo:hover {
    color: var(--gold);
}

/* Desktop Nav Links */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color var(--transition-base);
}

/* Nav link gold underline on hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Nav CTA Button */
.nav-cta {
    margin-left: var(--space-lg);
}

/* Hamburger Toggle — Hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-white);
    transition: all var(--transition-base);
    transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ------------------------------------------
   9. MOBILE MENU OVERLAY
------------------------------------------ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.mobile-menu-close:hover {
    color: var(--gold);
}

.mobile-menu-nav {
    text-align: center;
}

.mobile-menu-links {
    margin-bottom: var(--space-2xl);
}

.mobile-menu-links li {
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Stagger animation when menu opens */
.mobile-menu.active .mobile-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-links li:nth-child(2) {
    transition-delay: 0.20s;
}

.mobile-menu.active .mobile-menu-links li:nth-child(3) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu-links li:nth-child(4) {
    transition-delay: 0.30s;
}

.mobile-menu.active .mobile-menu-links li:nth-child(5) {
    transition-delay: 0.35s;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--gold);
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.mobile-menu-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.mobile-menu-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
}


/* ------------------------------------------
   10. HERO SECTION
------------------------------------------ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.55) 0%,
            rgba(10, 10, 10, 0.40) 40%,
            rgba(10, 10, 10, 0.55) 70%,
            rgba(10, 10, 10, 0.80) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.0625rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 16px;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    animation: scrollDown 2s ease-in-out infinite;
}


/* ------------------------------------------
   11. ABOUT PREVIEW SECTION
------------------------------------------ */
.about-preview {
    background: var(--bg-primary);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.about-preview-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-primary);
    line-height: 1.3;
    margin-top: 2px;
}

.about-preview-content {
    padding-left: var(--space-xl);
}

.about-preview-content p {
    margin-bottom: var(--space-md);
    font-size: 1.0625rem;
    line-height: 1.85;
}


/* ------------------------------------------
   12. FEATURED DISHES
------------------------------------------ */
.featured-dishes {
    background: var(--bg-secondary);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.dish-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.dish-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.dish-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover .dish-card-image img {
    transform: scale(1.08);
}

.dish-card-overlay {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 1;
}

.dish-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(10px);
    color: var(--gold);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
}

.dish-card-content {
    padding: var(--space-lg);
}

.dish-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-white);
}

.dish-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gold);
}

.dish-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-base);
}

.dish-link:hover {
    color: var(--gold);
}

.dish-link:hover i {
    transform: translateX(4px);
}

.dish-link i {
    font-size: 0.625rem;
    transition: transform var(--transition-base);
}


/* ------------------------------------------
   13. EXPERIENCE BANNER & STATS
------------------------------------------ */
.experience-banner {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-darker);
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience-content .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

/* Vertical divider between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}


/* ------------------------------------------
   14. TESTIMONIALS SLIDER
------------------------------------------ */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
}

.testimonial-quote {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    opacity: 0.4;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.875rem;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.375rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    font-style: normal;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.author-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.slider-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 126, 0.08);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-gold);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}


/* ------------------------------------------
   15. RESERVATION CTA
------------------------------------------ */
.reservation-cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-darker);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.cta-phone {
    margin-top: var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.cta-phone a {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* ------------------------------------------
   16. NEWSLETTER
------------------------------------------ */
.newsletter {
    background: var(--bg-secondary);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-description {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    margin-top: var(--space-lg);
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: border-color var(--transition-base);
}

.newsletter-input-group:focus-within {
    border-color: var(--gold);
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 300;
    min-width: 0;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-input-group .btn {
    border-radius: 0;
    border: none;
    padding: 16px 28px;
    flex-shrink: 0;
}

.newsletter-privacy {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    opacity: 0.7;
}

.newsletter-privacy i {
    margin-right: 4px;
    font-size: 0.6875rem;
}

.newsletter-success {
    padding: var(--space-xl);
    animation: fadeInUp 0.5s ease;
}

.newsletter-success i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: var(--space-md);
}

.newsletter-success p {
    font-size: 1.0625rem;
    color: var(--text-light);
}


/* ------------------------------------------
   17. FOOTER
------------------------------------------ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-4xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

/* Footer Brand Column */
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--text-white);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.footer-logo:hover {
    color: var(--gold);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
}

/* Footer Links */
.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-right: 0;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: var(--space-sm);
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--gold);
    font-size: 0.875rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--gold);
}

/* Footer Hours */
.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(200, 169, 126, 0.08);
}

.footer-hours li span:first-child {
    color: var(--text-light);
    font-weight: 400;
}

.hours-highlight {
    margin-top: var(--space-sm);
}

.hours-highlight span:first-child {
    color: var(--gold) !important;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}


/* ------------------------------------------
   18. BACK TO TOP BUTTON
------------------------------------------ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.875rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}


/* ------------------------------------------
   19. PAGE HEADER (Inner Pages)
------------------------------------------ */
.page-header {
    position: relative;
    height: 45vh;
    min-height: 350px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.50) 0%,
            rgba(10, 10, 10, 0.70) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: var(--nav-height);
}

.page-header-content .section-label {
    margin-bottom: var(--space-md);
}

.page-header-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .separator {
    color: var(--gold);
    font-size: 0.625rem;
}

.breadcrumb .current {
    color: var(--gold);
}


/* ------------------------------------------
   20. MENU PAGE
------------------------------------------ */

/* Menu Tabs Navigation */
.menu-tabs-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.menu-tab-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.menu-tab-btn:hover {
    color: var(--gold);
    border-color: var(--border-gold);
}

.menu-tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
}

/* Menu Tab Content Panels */
.menu-tab-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.menu-tab-panel.active {
    display: block;
}

/* Category Title Inside Panel */
.menu-category-title {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--space-2xl);
    letter-spacing: 2px;
}

/* Menu Items Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-3xl);
}

/* Individual Menu Item */
.menu-item {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Dotted line between name and price */
.menu-item-header::after {
    content: '';
    flex: 1;
    border-bottom: 1px dotted var(--border-gold);
    margin: 0 var(--space-sm);
    min-width: 20px;
    align-self: center;
    transform: translateY(-4px);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    order: 3;
}

.menu-item-name {
    order: 1;
}

.menu-item-header::after {
    order: 2;
}

.menu-item-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* Dietary Tags */
.menu-item-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.menu-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
}

/* Menu Note/Description at bottom */
.menu-note {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}


/* ------------------------------------------
   21. ABOUT PAGE
------------------------------------------ */

/* Story Section */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.about-story-content p {
    font-size: 1.0625rem;
    line-height: 1.85;
}

/* Chef Section */
.about-chef-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-chef-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.chef-name {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.chef-title {
    font-family: var(--font-accent);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
}

.chef-bio p {
    font-size: 1.0625rem;
    line-height: 1.85;
}

/* Philosophy Pillars */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.philosophy-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.philosophy-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.philosophy-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.philosophy-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.6);
    color: var(--gold);
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Make first 2 gallery items span wider */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}


/* ------------------------------------------
   22. RESERVATIONS PAGE
------------------------------------------ */
.reservation-section {
    background: var(--bg-primary);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.reservation-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: var(--space-2xl);
}

.reservation-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

/* Reservation Sidebar Info */
.reservation-sidebar {
    position: sticky;
    top: calc(var(--nav-height-scrolled) + var(--space-xl));
}

.reservation-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.reservation-info-card h4 {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
}

.reservation-info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.reservation-info-card ul li i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Policies card */
.policies-list li {
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.policies-list li i {
    color: var(--gold);
    font-size: 0.6875rem;
    margin-top: 5px;
}


/* ------------------------------------------
   23. CONTACT PAGE
------------------------------------------ */

/* Contact Info Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.contact-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: var(--bg-primary);
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.contact-card p,
.contact-card a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.contact-card a:hover {
    color: var(--gold);
}

/* Contact Content Grid (Form + Map) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: var(--space-2xl);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) invert(92%) contrast(85%);
    transition: filter var(--transition-base);
}

.map-container:hover iframe {
    filter: grayscale(40%) invert(92%) contrast(90%);
}

/* Hours Section */
.contact-hours {
    margin-top: var(--space-3xl);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.hours-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.hours-card h4 {
    color: var(--gold);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.hours-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.hours-card .hours-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}


/* ------------------------------------------
   24. LIGHTBOX
------------------------------------------ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    z-index: 1;
    transition: color var(--transition-base);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--transition-base);
    z-index: 1;
}

.lightbox-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}


/* ------------------------------------------
   25. KEYFRAME ANIMATIONS
------------------------------------------ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* ------------------------------------------
   26. SCROLL REVEAL SYSTEM
------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-reveal);
}

.reveal.reveal-left {
    transform: translateX(-60px);
}

.reveal.reveal-right {
    transform: translateX(60px);
}

.reveal.reveal-up {
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay for grid children */
.reveal.active .dish-card:nth-child(1),
.reveal.active .philosophy-card:nth-child(1),
.reveal.active .contact-card:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active .dish-card:nth-child(2),
.reveal.active .philosophy-card:nth-child(2),
.reveal.active .contact-card:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active .dish-card:nth-child(3),
.reveal.active .philosophy-card:nth-child(3),
.reveal.active .contact-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Individual card reveal stagger */
.dish-card.reveal.reveal-up:nth-child(2) {
    transition-delay: 0.15s;
}

.dish-card.reveal.reveal-up:nth-child(3) {
    transition-delay: 0.3s;
}


/* ------------------------------------------
   27. RESPONSIVE — ≤1200px
------------------------------------------ */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }

    .about-preview-image img {
        height: 480px;
    }

    .about-preview-badge {
        width: 110px;
        height: 110px;
        bottom: -20px;
        right: -15px;
    }

    .badge-number {
        font-size: 2rem;
    }
}


/* ------------------------------------------
   28. RESPONSIVE — ≤1024px (Tablet)
------------------------------------------ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 20px;
    }

    /* Hide desktop nav, show hamburger */
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Grids → adjust columns */
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-preview-image img {
        height: 400px;
    }

    .about-preview-content {
        padding-left: 0;
    }

    .about-preview-badge {
        bottom: auto;
        top: var(--space-md);
        right: var(--space-md);
        width: 100px;
        height: 100px;
    }

    .badge-number {
        font-size: 1.75rem;
    }

    .badge-text {
        font-size: 0.625rem;
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Menu Page */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* About Page */
    .about-story-grid,
    .about-chef-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-story-image img,
    .about-chef-image img {
        height: 380px;
    }

    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Reservation Page */
    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .reservation-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .map-container {
        min-height: 350px;
    }

    /* Parallax off on tablet/mobile */
    .experience-bg,
    .cta-bg {
        background-attachment: scroll;
    }
}


/* ------------------------------------------
   29. RESPONSIVE — ≤768px (Mobile)
------------------------------------------ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --nav-height: 70px;
        --nav-height-scrolled: 60px;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        letter-spacing: 8px;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-scroll {
        display: none;
    }

    /* Dishes → 1 column */
    .dishes-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-xl) var(--space-md);
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    /* Newsletter */
    .newsletter-input-group {
        flex-direction: column;
        border: none;
        gap: var(--space-md);
    }

    .newsletter-input-group input {
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-sm);
        text-align: center;
    }

    .newsletter-input-group .btn {
        border-radius: var(--radius-sm);
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .footer-hours li {
        font-size: 0.8125rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Form rows → single column */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Page Header */
    .page-header {
        height: 35vh;
        min-height: 280px;
    }

    /* Philosophy */
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-top: var(--space-xl);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    /* Contact Cards */
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Contact Hours */
    .hours-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Reservation Sidebar */
    .reservation-sidebar {
        grid-template-columns: 1fr;
    }

    /* Stats — still 2x2 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile menu links smaller */
    .mobile-menu-links a {
        font-size: 1.5rem;
    }
}


/* ------------------------------------------
   30. RESPONSIVE — ≤480px (Small Mobile)
------------------------------------------ */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .hero-label {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }

    .nav-logo {
        font-size: 1.25rem;
        letter-spacing: 4px;
    }

    /* Section header text */
    .section-label {
        font-size: 0.9375rem;
        letter-spacing: 2px;
    }

    /* Buttons — full width on tiny screens */
    .btn-lg {
        padding: 16px 32px;
        font-size: 0.8125rem;
        width: 100%;
    }

    /* Stat numbers smaller */
    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.6875rem;
        letter-spacing: 1px;
    }

    /* Stats — single vertical divider only */
    .stat-item::after {
        display: none;
    }

    .stat-item:nth-child(odd)::after {
        display: block;
    }

    /* Dish card images shorter */
    .dish-card-image {
        height: 220px;
    }

    /* Testimonial controls compact */
    .slider-controls {
        gap: var(--space-md);
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    /* Menu tabs scroll */
    .menu-tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: var(--space-sm);
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .menu-tab-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    /* About preview badge smaller */
    .about-preview-badge {
        width: 85px;
        height: 85px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.5625rem;
    }

    /* Gallery 2 columns, first item no span */
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    /* Form padding */
    .reservation-form-card,
    .contact-form-card {
        padding: var(--space-xl) var(--space-md);
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.75rem;
    }

    /* CTA title */
    .cta-title {
        letter-spacing: 2px;
    }
}


/* ------------------------------------------
   PRINT STYLES (Bonus: professional touch)
------------------------------------------ */
@media print {

    .navbar,
    .mobile-menu,
    .hero-scroll,
    .back-to-top,
    .slider-controls,
    .hero-cta,
    .newsletter,
    .footer-social {
        display: none !important;
    }

    body {
        background: white;
        color: #333;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-bg,
    .hero-overlay,
    .experience-bg,
    .experience-overlay,
    .cta-bg,
    .cta-overlay {
        display: none;
    }

    .section {
        padding: 30px 0;
    }

    h1,
    h2,
    h3,
    h4 {
        color: #111;
    }

    a {
        color: #333;
    }
}