/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Option B: Alabaster & Sage/Saffron)
   ========================================================================== */

:root {
    --bg-primary: #FAF9F6;       /* Alabaster Warm White */
    --bg-secondary: #F4F0E8;     /* Slightly darker warm tone for contrast */
    --bg-card: #FFFFFF;          /* Pure White */
    --color-primary: #2A3A30;     /* Deep Sage/Olive Green - Royal & Organic */
    --color-accent: #C9832E;      /* Rich Saffron Gold */
    --text-primary: #1E2220;      /* Dark Slate/Charcoal */
    --text-muted: #5C625E;       /* Soft Slate for secondary text */
    --border-color: #E2DDD5;     /* Light warm grey borders */
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-header: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   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 {
    overflow-x: hidden;
    cursor: none; /* Hide default cursor to use custom GSAP cursor */
}

a, button, input, select, textarea {
    cursor: none; /* Force custom cursor on interactive elements */
}

/* Selection style */
::selection {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loader-content {
    opacity: 1;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.loader-line-wrap {
    width: 150px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 auto 20px auto;
    overflow: hidden;
    position: relative;
}

.loader-line {
    width: 0%;
    height: 100%;
    background-color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0;
}

.loader-subtitle {
    font-family: var(--font-header);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.custom-cursor-circle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Cursor Hover States (Triggered via JS) */
.custom-cursor-circle.hovered {
    width: 56px;
    height: 56px;
    background-color: rgba(201, 131, 46, 0.1);
    border-color: var(--color-accent);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container.small {
    max-width: 800px;
}

.section-label {
    display: block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.italic {
    font-style: italic;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 5px 0;
    position: relative;
}

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

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

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

.nav-logo a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-btn {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--bg-primary);
    background-color: var(--color-primary);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 0;
    border: 1px solid var(--color-primary);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

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

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15); /* GSAP will animate this down */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 34, 29, 0.45); /* Soft sage-tinted overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-tagline {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #E5C185; /* Light gold-saffron for high contrast on dark overlay */
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.hero-cta-btn {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 36px;
    border: 1px solid #FFFFFF;
    transition: var(--transition-fast);
}

.hero-cta-btn:hover {
    background-color: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-text {
    font-family: var(--font-header);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
}

.scroll-arrow {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

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

/* ==========================================================================
   STORY SECTION
   ========================================================================== */

.story-section {
    padding: 140px 0;
    background-color: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.story-text-col {
    padding-right: 40px;
}

.story-lead {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.story-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.story-signature {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--color-accent);
    padding-left: 20px;
}

.sig-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
}

.sig-title {
    font-family: var(--font-header);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 5px;
}

.story-img-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

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

/* GSAP Reveal animation container setup */
.reveal-container {
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   TASTING MENU SECTION (PINNED & SCROLL LAYOUT)
   ========================================================================== */

.menu-section {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* Left Side: Pinned Showcase */
.menu-image-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.menu-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menu-showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-showcase-img.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.menu-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 58, 48, 0.2); /* Soft sage tint overlay */
    z-index: 3;
}

/* Right Side: Scrollable Details */
.menu-details-scroll {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
}

.menu-header-sticky {
    margin-bottom: 60px;
}

.menu-course-item {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
}

.menu-course-item:last-child {
    border-bottom: none;
    height: 70vh;
}

.course-number {
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 15px;
    display: block;
}

.course-category {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.course-name {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.course-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 480px;
}

.course-pairing {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-accent);
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    display: inline-block;
    max-width: 400px;
}

/* ==========================================================================
   HORIZONTAL GALLERY SECTION
   ========================================================================== */

.gallery-section {
    padding: 140px 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.gallery-intro {
    margin-bottom: 80px;
    padding: 0 40px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
}

.gallery-horizontal-scroll {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    width: max-content; /* Needed to make horizontal scrolling work */
}

.gallery-card {
    width: 420px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
}

.gallery-card-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img-wrap img {
    transform: scale(1.08);
}

.gallery-card-info h3 {
    font-family: var(--font-header);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.gallery-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   RESERVATIONS
   ========================================================================== */

.reserve-section {
    padding: 140px 0;
    background-color: var(--bg-secondary);
}

.reserve-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 80px;
}

.reserve-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: #FFFFFF;
}

.form-submit {
    margin-top: 20px;
    text-align: center;
}

.submit-btn {
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--bg-primary);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 18px 48px;
    cursor: none;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-col h3 {
    font-family: var(--font-header);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col p.highlight {
    color: #FFFFFF;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-header);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    body {
        cursor: auto; /* Fallback to default cursor on touch screens */
    }
    .custom-cursor-dot, .custom-cursor-circle {
        display: none; /* Hide custom cursor */
    }
    
    .nav-container {
        padding: 20px;
    }
    .nav-left, .nav-right {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-text-col {
        padding-right: 0;
    }
    .story-img-container {
        height: 450px;
    }
    
    /* Tasting Menu Mobile/Tablet Layout (Collapse Pinned Side) */
    .menu-container {
        grid-template-columns: 1fr;
    }
    .menu-image-showcase {
        height: 50vh;
        position: sticky;
        top: 80px;
        z-index: 5;
    }
    .menu-details-scroll {
        padding: 60px 40px;
    }
    .menu-course-item {
        height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
    }
    header {
        position: relative;
    }
    .hero-section {
        height: 80vh;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reserve-card {
        padding: 40px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== ZA'AFRAN CUSTOM THEME OVERRIDES & MOBILE FIXES ===== */

/* --- MOBILE LAYOUT SPACING ADJUSTMENTS --- */
@media (max-width: 768px) {
  .story-section,
  .gallery-section,
  .reserve-section {
    padding: 60px 0 !important;
  }
  .hero-section {
    height: 90vh !important;
  }
}

/* --- NEO-BRUTALISM OVERRIDES --- */
body.theme-brutal,
body.theme-brutal .story-section,
body.theme-brutal .menu-section,
body.theme-brutal .gallery-section,
body.theme-brutal .reserve-section {
  background-color: #FAF8F5 !important;
  color: #000000 !important;
}
body.theme-brutal header,
body.theme-brutal .nav-container,
body.theme-brutal .gallery-card,
body.theme-brutal .reserve-card,
body.theme-brutal .form-group input,
body.theme-brutal .form-group select,
body.theme-brutal .form-group textarea,
body.theme-brutal .nav-btn,
body.theme-brutal .hero-cta-btn,
body.theme-brutal .submit-btn {
  border: 3px solid #000000 !important;
  border-radius: 0px !important;
  box-shadow: 6px 6px 0px #000000 !important;
  background-color: #ffffff !important;
  color: #000000 !important;
}
body.theme-brutal .nav-btn,
body.theme-brutal .hero-cta-btn,
body.theme-brutal .submit-btn {
  background-color: #FFDE4D !important;
  color: #000000 !important;
  font-weight: 900 !important;
}
body.theme-brutal h1,
body.theme-brutal h2,
body.theme-brutal h3,
body.theme-brutal h4,
body.theme-brutal p,
body.theme-brutal span,
body.theme-brutal a,
body.theme-brutal label,
body.theme-brutal .section-title,
body.theme-brutal .story-lead,
body.theme-brutal .story-body,
body.theme-brutal .course-name,
body.theme-brutal .course-desc,
body.theme-brutal .course-number,
body.theme-brutal .course-category,
body.theme-brutal .gallery-card-info h3,
body.theme-brutal .gallery-card-info p,
body.theme-brutal .reserve-intro,
body.theme-brutal .form-group label {
  color: #000000 !important;
}
body.theme-brutal h1,
body.theme-brutal h2,
body.theme-brutal h3,
body.theme-brutal h4,
body.theme-brutal .section-title,
body.theme-brutal .course-name,
body.theme-brutal .hero-title {
  font-family: 'Space Grotesk', 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
}
body.theme-brutal footer {
  background-color: #000000 !important;
  border-top: 3px solid #000000 !important;
}
body.theme-brutal footer * {
  color: #ffffff !important;
}

/* --- MINIMALIST OVERRIDES --- */
body.theme-minimalist,
body.theme-minimalist .story-section,
body.theme-minimalist .menu-section,
body.theme-minimalist .gallery-section,
body.theme-minimalist .reserve-section {
  background-color: #ffffff !important;
  color: #111111 !important;
}
body.theme-minimalist header,
body.theme-minimalist .nav-container,
body.theme-minimalist .gallery-card,
body.theme-minimalist .reserve-card,
body.theme-minimalist .form-group input,
body.theme-minimalist .form-group select,
body.theme-minimalist .form-group textarea,
body.theme-minimalist .nav-btn,
body.theme-minimalist .hero-cta-btn,
body.theme-minimalist .submit-btn {
  border: 1px solid #E2E2E2 !important;
  border-radius: 4px !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.02) !important;
  background-color: #FAFAFA !important;
  color: #111111 !important;
}
body.theme-minimalist .nav-btn,
body.theme-minimalist .hero-cta-btn,
body.theme-minimalist .submit-btn {
  background-color: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
}
body.theme-minimalist h1,
body.theme-minimalist h2,
body.theme-minimalist h3,
body.theme-minimalist h4,
body.theme-minimalist .section-title,
body.theme-minimalist .course-name,
body.theme-minimalist .hero-title,
body.theme-minimalist .gallery-card-info h3 {
  color: #111111 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
}
body.theme-minimalist p,
body.theme-minimalist span,
body.theme-minimalist label,
body.theme-minimalist a:not(.nav-btn):not(.hero-cta-btn):not(.submit-btn),
body.theme-minimalist .story-lead,
body.theme-minimalist .story-body,
body.theme-minimalist .course-desc,
body.theme-minimalist .course-number,
body.theme-minimalist .course-category,
body.theme-minimalist .gallery-card-info p,
body.theme-minimalist .reserve-intro,
body.theme-minimalist .form-group label {
  color: #555555 !important;
}
body.theme-minimalist footer {
  background-color: #fafafa !important;
  border-top: 1px solid #e2e2e2 !important;
}
body.theme-minimalist footer * {
  color: #111111 !important;
}

/* --- CLAYMORPHISM OVERRIDES --- */
body.theme-clay,
body.theme-clay .story-section,
body.theme-clay .menu-section,
body.theme-clay .gallery-section,
body.theme-clay .reserve-section {
  background-color: #ECEFF4 !important;
  color: #3A234A !important;
}
body.theme-clay header,
body.theme-clay .nav-container,
body.theme-clay .gallery-card,
body.theme-clay .reserve-card,
body.theme-clay .form-group input,
body.theme-clay .form-group select,
body.theme-clay .form-group textarea,
body.theme-clay .nav-btn,
body.theme-clay .hero-cta-btn,
body.theme-clay .submit-btn {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 20px rgba(186, 197, 211, 0.5), 
              inset 3px 3px 6px rgba(255, 255, 255, 0.9), 
              inset -3px -3px 6px rgba(0, 0, 0, 0.03) !important;
  background-color: #ffffff !important;
  color: #3A234A !important;
}
body.theme-clay .nav-btn,
body.theme-clay .hero-cta-btn,
body.theme-clay .submit-btn {
  background-color: #FFB3C6 !important;
  box-shadow: 0 6px 12px rgba(255, 179, 198, 0.4) !important;
  color: #3A234A !important;
}
body.theme-clay h1,
body.theme-clay h2,
body.theme-clay h3,
body.theme-clay h4,
body.theme-clay .section-title,
body.theme-clay .course-name,
body.theme-clay .hero-title,
body.theme-clay .gallery-card-info h3 {
  color: #3A234A !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
}
body.theme-clay p,
body.theme-clay span,
body.theme-clay label,
body.theme-clay a:not(.nav-btn):not(.hero-cta-btn):not(.submit-btn),
body.theme-clay .story-lead,
body.theme-clay .story-body,
body.theme-clay .course-desc,
body.theme-clay .course-number,
body.theme-clay .course-category,
body.theme-clay .gallery-card-info p,
body.theme-clay .reserve-intro,
body.theme-clay .form-group label {
  color: #6B4D7E !important;
}
body.theme-clay footer {
  background-color: #ECEFF4 !important;
  border-top: 1px dashed rgba(186,197,211,0.5) !important;
}
body.theme-clay footer * {
  color: #3A234A !important;
}

/* --- GLASSMORPHISM OVERRIDES --- */
body.theme-glass,
body.theme-glass .story-section,
body.theme-glass .menu-section,
body.theme-glass .gallery-section,
body.theme-glass .reserve-section {
  background-color: #0E0A16 !important;
  color: #ffffff !important;
}
body.theme-glass header,
body.theme-glass .nav-container,
body.theme-glass .gallery-card,
body.theme-glass .reserve-card,
body.theme-glass .form-group input,
body.theme-glass .form-group select,
body.theme-glass .form-group textarea,
body.theme-glass .nav-btn,
body.theme-glass .hero-cta-btn,
body.theme-glass .submit-btn {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
}
body.theme-glass .nav-btn,
body.theme-glass .hero-cta-btn,
body.theme-glass .submit-btn {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}
body.theme-glass h1,
body.theme-glass h2,
body.theme-glass h3,
body.theme-glass h4,
body.theme-glass .section-title,
body.theme-glass .course-name,
body.theme-glass .hero-title,
body.theme-glass .gallery-card-info h3 {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
}
body.theme-glass p,
body.theme-glass span,
body.theme-glass label,
body.theme-glass a:not(.nav-btn):not(.hero-cta-btn):not(.submit-btn),
body.theme-glass .story-lead,
body.theme-glass .story-body,
body.theme-glass .course-desc,
body.theme-glass .course-number,
body.theme-glass .course-category,
body.theme-glass .gallery-card-info p,
body.theme-glass .reserve-intro,
body.theme-glass .form-group label {
  color: rgba(255, 255, 255, 0.7) !important;
}
body.theme-glass footer {
  background-color: #0e0a16 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
body.theme-glass footer * {
  color: #ffffff !important;
}
