/* ==========================================================================
   Tastella Official Website - Chic Modern Bistro / Western Diner Theme
   ========================================================================== */

/* Fonts Import: Elegant European Serifs, Geometric Sans-Serifs & Golos Text for Logo */
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

:root {
    /* Muted & Sophisticated Neutral Color Palette */
    --bg-primary: #FAF8F5;       /* Warm Alabaster White */
    --bg-secondary: #F2EDE6;     /* Muted Linen / Warm Sand */
    --bg-glass: #FFFFFF;         /* Pure White Card */
    --bg-glass-hover: #FCFAF7;   /* Soft Ivory */
    --border-glass: rgba(44, 42, 41, 0.08); /* Clean thin border */
    --border-glass-light: rgba(44, 42, 41, 0.18);
    
    /* Muted Bistro Accents (Rust, Olive, Ochre) */
    --accent-gold: #B35338;      /* Chic Rust Red / French Terracotta */
    --accent-gold-hover: #964028;
    --accent-gold-glow: rgba(179, 83, 56, 0.06);
    --accent-gold-gradient: linear-gradient(135deg, #B35338 0%, #C5994E 100%);
    --accent-green: #4A604D;     /* Sophisticated Olive Green */
    --accent-yellow: #C5994E;    /* Muted Ochre Yellow */
    
    --text-primary: #2C2A29;     /* Deep Charcoal / Warm Black */
    --text-secondary: #645E5A;   /* Chic Muted Cocoa / Slate Gray */
    --text-muted: #968F8A;       /* Linen Gray */
    
    /* Typography */
    --font-serif: 'Playfair Display', 'Noto Serif JP', Georgia, serif; /* Elegant serif */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif; /* Clean geometric */
    --font-logo: 'Golos Text', var(--font-sans); /* Modern geometric brand logo */
    
    /* Soft Elegant Shadows */
    --shadow-glass: 0 12px 30px rgba(44, 42, 41, 0.04), 0 4px 10px rgba(44, 42, 41, 0.02);
    --shadow-glow: 0 0 20px rgba(179, 83, 56, 0.05);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.15s ease;
    
    --nav-height: 85px;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

/* Custom Scrollbar - Clean & Narrow */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #E2DDD5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

p {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

/* Helpers & Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--accent-gold);
    display: inline-block;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

/* Elegant Muted Card Panel */
.glass-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px; /* Less rounded for professional feel */
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.glass-panel:hover {
    border-color: var(--border-glass-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 42, 41, 0.08);
}

/* Buttons: Classic Elegant pill shapes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px; /* Classic sharp/slightly rounded corners */
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.btn-primary {
    background: var(--accent-gold);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 12px rgba(179, 83, 56, 0.15);
}
.btn-primary:hover {
    transform: translateY(-1px);
    background: var(--accent-gold-hover);
    box-shadow: 0 6px 18px rgba(179, 83, 56, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-green);
}
.btn-secondary:hover {
    background: rgba(74, 96, 77, 0.05);
    transform: translateY(-1px);
    color: var(--accent-green);
    border-color: var(--accent-green);
}

/* Navigation Header */
header {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(250, 248, 245, 0.96);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 20px rgba(44, 42, 41, 0.02);
    height: 75px;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-main {
    font-family: var(--font-logo);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent-gold);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-green);
    text-transform: uppercase;
    padding-left: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 0.2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

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

/* Burger Menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Footer: Warm Sand Clean Slate */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 4.5rem 0 2.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 340px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 0.3rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(44, 42, 41, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* ==========================================================================
   PAGE: TOP PAGE (index.html)
   ========================================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 95vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: var(--nav-height);
    padding-bottom: 6rem; /* Shift centered content upwards to completely prevent overlapping with scroll-down */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    filter: brightness(0.92);
    transform: scale(1.02);
    animation: zoomHero 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.15) 0%, rgba(250, 248, 245, 0.45) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 820px;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    padding: 3.5rem 3rem;
    background: rgba(250, 248, 245, 0.85); /* Exquisite translucent warm cream */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(44, 42, 41, 0.06), 0 4px 12px rgba(44, 42, 41, 0.02);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
}

.hero-desc {
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.2rem;
    color: var(--text-secondary);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    gap: 0.5rem;
    z-index: 5;
}

.scroll-down::after {
    content: '';
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollLine 2s infinite ease-in-out;
}

/* Keyframe Animations */
@keyframes zoomHero {
    from { transform: scale(1.01); }
    to { transform: scale(1.08); }
}

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

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.concept-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concept-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-green);
    text-transform: uppercase;
}

.concept-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.concept-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.concept-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.concept-image-wrapper:hover .concept-image {
    transform: scale(1.03);
}

/* Experience Narrative Section (Editorial Bistro Style) */
.experience-narrative {
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.narrative-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.narrative-row:nth-child(even) {
    flex-direction: row-reverse;
}

.narrative-img-wrapper {
    flex: 1.1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    position: relative;
}

.narrative-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.narrative-img-wrapper:hover .narrative-img {
    transform: scale(1.03);
}

.narrative-text {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.narrative-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-style: italic;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.85;
    font-weight: 500;
}

.narrative-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(74, 96, 77, 0.15);
    padding-bottom: 0.75rem;
    margin-top: -0.5rem;
}

.narrative-desc {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

/* Call To Action Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    filter: brightness(0.96);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(250, 248, 245, 0.5) 0%, var(--bg-primary) 95%);
    z-index: -1;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: var(--shadow-glass);
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.02rem;
    margin-bottom: 2.2rem;
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ==========================================================================
   PAGE: MENU PAGE (menu.html)
   ========================================================================== */

.page-header {
    padding-top: calc(var(--nav-height) + 3.5rem);
    padding-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(179, 83, 56, 0.04) 0%, transparent 100%);
}

.page-subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent-green);
    margin-bottom: 0.3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 500;
}

/* Menu Category Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0 4rem;
    flex-wrap: wrap;
}

.menu-tab-btn {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(44, 42, 41, 0.02);
}

.menu-tab-btn:hover, .menu-tab-btn.active {
    border-color: var(--accent-gold);
    color: #FFFFFF;
    background: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(179, 83, 56, 0.15);
}

/* Menu Display Pane */
.menu-panel {
    display: none;
    animation: fadeInTab 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.menu-panel.active {
    display: block;
}

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

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

.menu-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
}

.menu-item-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
}

.menu-item-info {
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border-glass-light);
    padding-bottom: 0.5rem;
}

.menu-item-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.menu-item-price {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-align: right;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: pre-line;
}

.menu-item-badge {
    background: rgba(179, 83, 56, 0.08);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   Premium Course Cards - Large Image with Text Overlay Mask
   ========================================================================== */
.menu-course-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4.5rem;
}

.menu-course-card {
    display: flex; /* Flex layout to align image and text side-by-side */
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-glass); /* Beautiful elegant light card background */
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    min-height: 480px; /* High enough to show all list items elegantly */
    width: 100%;
}

.menu-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(44, 42, 41, 0.08);
    border-color: var(--border-glass-light);
}

/* 50% width for the image block with gallery matte frame background */
.menu-course-img-wrapper {
    width: 50%;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary); /* Beautiful warm sand/linen texture background */
}

.menu-course-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Shows 100% of the widescreen photo with absolutely zero cropping! */
    display: block;
    transition: var(--transition-smooth);
}

.menu-course-card:hover .menu-course-img {
    transform: scale(1.03); /* Soft elegant premium zoom */
}

/* 50% width for the text content block */
.menu-course-content {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    background: var(--bg-glass); /* Light elegant glass card background */
    color: var(--text-primary);
}

/* Alternate even course cards to have image on the right, text on the left! */
.menu-course-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* No mask overlay needed since image is side-by-side! */
.menu-course-overlay {
    display: none;
}

.menu-course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass-light);
    padding-bottom: 1rem;
}

.menu-course-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-course-badge {
    background: var(--accent-gold);
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-course-price {
    font-family: var(--font-logo);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--accent-gold); /* Using Rust Red / Terracotta for high contrast on light card! */
    text-align: right;
    white-space: nowrap;
}

.menu-course-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-line;
}

/* ==========================================================================
   Typographic Bistro Singles List (Dotted Leader lines)
   ========================================================================== */
.menu-singles-section {
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px dashed var(--border-glass-light);
}

.menu-singles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 4rem; /* 1.8rem vertical, 4rem horizontal */
    margin-top: 2rem;
}

.menu-single-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-single-title {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    display: flex;
    flex-grow: 1;
    align-items: baseline;
    flex-wrap: wrap; /* Allows subnotes to wrap cleanly */
}

/* Elegant dotted leader line connecting title and price */
.menu-single-title::after {
    content: '';
    flex-grow: 1;
    border-bottom: 1px dotted var(--text-muted);
    margin: 0 0.8rem;
    position: relative;
    top: -0.25rem;
    opacity: 0.35;
}

.menu-single-price {
    font-family: var(--font-logo);
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
    text-align: right;
    line-height: 1.3;
}

.menu-single-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    width: 100%; /* Force wrap note to next line for neat styling */
    margin-top: 0.15rem;
    font-weight: 400;
    line-height: 1.4;
}

/* ==========================================================================
   PAGE: RESERVE PAGE (reserve.html)
   ========================================================================== */

.reserve-container {
    max-width: 850px;
    margin: 1.5rem auto 5rem;
    padding: 4rem 2rem;
}

/* Premium Reservation Card - Bistro / Brasserie Style */
.reserve-card {
    margin: 3rem auto;
    padding: 2.5rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    max-width: 650px;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.reserve-card:hover {
    box-shadow: 0 15px 35px rgba(44, 42, 41, 0.08);
    border-color: var(--border-glass-light);
}

/* Elegant Glowing Top Accent Line (Terracotta) */
.reserve-card-accent {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.reserve-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* The Widget Wrapper - unified dark screen blending with Hot Pepper's black bg */
.reserve-widget-wrapper {
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.85);
}

.reserve-card-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* ==========================================================================
   PAGE: ACCESS PAGE (access.html)
   ========================================================================== */

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--border-glass);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th, .info-table td {
    padding: 1.2rem 0.8rem;
    text-align: left;
    vertical-align: middle;
}

.info-table th {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--accent-green);
    width: 30%;
    font-weight: 500;
}

.info-table td {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.info-table td strong {
    color: var(--text-primary);
}

/* Map Container */
.map-container {
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    z-index: 10;
}

/* Leaflet popups styliing for warm theme */
.leaflet-popup-content-wrapper {
    background: #FFFFFF !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--accent-gold) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 25px rgba(44, 42, 41, 0.08) !important;
}

.leaflet-popup-tip {
    background: #FFFFFF !important;
    border-left: 1px solid var(--accent-gold) !important;
    border-bottom: 1px solid var(--accent-gold) !important;
}

/* Route Guides */
.route-section {
    margin-top: 4rem;
}

.route-section h3 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-green);
    padding-left: 0.85rem;
}

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

.route-card {
    padding: 2.5rem 1.8rem;
    text-align: center;
}

.route-card-icon {
    font-size: 2.2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.route-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.route-card p {
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ==========================================================================
   Error Pages Styles (404 / 500)
   ========================================================================== */

.error-container {
    text-align: center;
    max-width: 500px;
    margin: auto;
    padding: 4rem 2rem;
}

.error-code {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
}

.error-title {
    font-size: 1.6rem;
    margin-bottom: 0.85rem;
}

.error-desc {
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .concept-grid {
        gap: 3rem;
    }
    
    .concept-image {
        height: 350px;
    }
    
    .narrative-row {
        gap: 3rem;
    }
    
    .access-grid {
        gap: 2rem;
    }
    
    .map-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    /* Fonts scale down */
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    /* Navigation burger interaction */
    .burger {
        display: block;
        z-index: 1100;
    }
    
    .burger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }
    
    .nav-menu {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 70%;
        max-width: 320px;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-glass);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        z-index: 1050;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Layout stacks */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .concept-image {
        height: 300px;
    }
    
    .narrative-row, .narrative-row:nth-child(even) {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .narrative-text {
        text-align: center;
        align-items: center;
    }
    
    .narrative-title {
        text-align: center;
        width: 100%;
    }
    
    .narrative-img {
        height: 280px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .menu-course-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .menu-course-card, .menu-course-card:nth-child(even) {
        flex-direction: column;
        min-height: auto;
        height: auto;
    }
    
    .menu-course-img-wrapper {
        width: 100%;
        height: 280px; /* High enough image box on mobile */
    }
    
    .menu-course-content {
        width: 100%;
        padding: 2rem 1.5rem;
        background: var(--bg-glass);
        box-shadow: none;
        border: none;
        border-radius: 0;
        transform: none;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        max-height: none;
    }
    
    .menu-course-title {
        font-size: 1.35rem;
    }
    
    .menu-course-price {
        font-size: 1.35rem;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .route-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-section h4 {
        border-bottom: 2px solid var(--accent-green);
        padding-bottom: 0.3rem;
        display: inline-block;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .reserve-container {
        padding: 1.5rem;
    }
    
    .menu-singles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Lightbox Modal - Dynamic Large Image Zoom Popup
   ========================================================================== */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2500; /* High enough to sit on top of nav headers and maps */
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(26, 25, 24, 0.95); /* Deep charcoal translucent glass background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #E2DDD5;
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-quick);
    z-index: 2600;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #FFFFFF;
    text-decoration: none;
    transform: scale(1.1);
}

/* Caption Text */
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #E2DDD5;
    padding: 10px 0;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Zoom Hover Indicator on Clickable Images */
.lightbox-trigger {
    cursor: zoom-in; /* Change cursor to zoom-in to indicate clickability */
    transition: var(--transition-smooth);
}

.lightbox-trigger:hover {
    filter: brightness(1.05); /* Soft bright highlight on hover */
}
