/* ==========================================================================
   LA VERA CLEMSON - DESIGN SYSTEM & STYLESHEET
   Location: Clemson, SC
   Aesthetics: Modern Neon Cantina & Midnight Indigo Velvet, Clemson Orange, Fiesta Pink, Teal Accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Logo-Aligned Premium Palette */
    --bg-deep-black: #05030f;       /* Deep volcanic dark indigo */
    --bg-dark-obsidian: #0a081a;    /* Midnight velvet indigo */
    --bg-rich-charcoal: #120e2a;    /* Rich indigo-purple chamber */
    --bg-card-glass: rgba(18, 14, 42, 0.82);
    
    --gold-primary: #f58025;        /* Clemson Tiger Orange */
    --gold-secondary: #ff9e42;      /* Warm golden fire */
    --gold-dark: #d85e00;           /* Burnt orange */
    --gold-light: #ffc48c;          /* Soft peach orange */
    
    --pink-accent: #e91e63;         /* Fiesta Pink from Sombrero */
    --pink-hover: #ff4081;          /* Hot glow pink */
    
    --teal-accent: #00b4d8;         /* Mexican Turquoise/Teal from Margarita glass */
    --teal-hover: #0077b6;          /* Deep ocean turquoise */
    
    --gold-gradient: linear-gradient(135deg, #f58025 0%, #ff5722 50%, #e91e63 100%);
    --gold-gradient-soft: linear-gradient(135deg, #ea5b0c 0%, #e91e63 100%);
    --teal-gradient: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    
    --text-pure-white: #ffffff;
    --text-warm-white: #f3f2fa;
    --text-muted-gray: #9ba0c7;
    --text-dark-gray: #585c80;
    
    --border-gold-soft: rgba(245, 128, 37, 0.25);
    --border-pink-soft: rgba(233, 30, 99, 0.25);
    --border-teal-soft: rgba(0, 180, 216, 0.25);
    --border-dark-gray: rgba(255, 255, 255, 0.05);
    --border-light-glow: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Effects & Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-in-out;
    --glass-blur: blur(20px);
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
    --glow-shadow: 0 0 15px rgba(245, 128, 37, 0.3);
    
    /* Spacing */
    --section-padding: 8rem 2rem;
    --section-padding-mobile: 5rem 1.5rem;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep-black);
    color: var(--text-warm-white);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button, select, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep-black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pink-accent);
}

/* --------------------------------------------------------------------------
   3. REUSABLE STYLES & LAYOUT COMPONENTS
   -------------------------------------------------------------------------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.relative {
    position: relative;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.sub-title {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--text-pure-white);
}

.section-desc {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--text-muted-gray);
    font-size: 1rem;
    font-weight: 300;
}

/* Gold/Orange Divider */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 30%, var(--pink-accent) 70%, transparent 100%);
    width: 180px;
    margin: 1.5rem 0;
    position: relative;
}

.gold-divider.center {
    margin: 1.5rem auto;
}

.gold-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: var(--pink-accent);
    border: 1px solid var(--bg-deep-black);
}

/* Buttons with neon Mexican gradients */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-sm {
    padding: 0.7rem 1.6rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--gold-gradient-soft);
    color: var(--text-pure-white);
    box-shadow: 0 4px 15px rgba(245, 128, 37, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 128, 37, 0.45);
    background: var(--gold-gradient);
}

.btn-outline {
    border: 1px solid var(--border-light-glow);
    color: var(--text-warm-white);
    background-color: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
    border-color: var(--teal-accent);
    color: var(--teal-accent);
    background-color: rgba(0, 180, 216, 0.05);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(10, 8, 26, 0.88);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-dark-gray);
    padding: 0.5rem 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    padding: 0.5rem 2rem;
}

/* Logo image styling */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img-file {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.header.scrolled .logo-img-file {
    height: 55px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted-gray);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
}

/* Language Switcher Button */
.lang-switch {
    border: 1px solid var(--border-gold-soft);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-switch:hover {
    border-color: var(--gold-primary);
    background-color: rgba(245, 128, 37, 0.05);
}

.lang-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-warm-white);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.05);
    transform: scale(1.02);
    animation: zoomHero 20s infinite alternate;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 13, 30, 0.2) 0%, rgba(5, 3, 15, 0.95) 85%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin-top: 4rem;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--teal-accent);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text-pure-white);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease forwards;
    background: linear-gradient(90deg, #ffffff 0%, var(--gold-secondary) 50%, var(--pink-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-gray);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 1.4s ease forwards;
}

.hero-actions-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1.6s ease forwards;
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted-gray);
    z-index: 1;
    transition: var(--transition-smooth);
}

.scroll-mouse {
    width: 22px;
    height: 38px;
    border: 1px solid var(--border-gold-soft);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--pink-accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.8s infinite ease-in-out;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted-gray);
    margin-top: 4px;
}

@keyframes mouseScroll {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translate(-50%, 14px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

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

/* --------------------------------------------------------------------------
   6. CONCEPT SECTION
   -------------------------------------------------------------------------- */
.story-section {
    padding: var(--section-padding);
    background-color: var(--bg-dark-obsidian);
    position: relative;
}

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

.story-content-box {
    padding-right: 2rem;
}

.story-text {
    color: var(--text-muted-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.signature-chef {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-dark-gray);
    padding-top: 2rem;
}

.chef-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-pure-white);
    display: block;
    line-height: 1.2;
}

.chef-title {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.chef-sig-svg {
    width: 140px;
    height: 45px;
    opacity: 0.85;
}

/* Story Visual Wrapper */
.story-visual-box {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.story-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-dark-gray);
}

.border-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--pink-accent);
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .border-decoration {
    top: -10px;
    right: -10px;
}

.floating-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background-color: var(--bg-rich-charcoal);
    border: 1px solid var(--gold-primary);
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    border-radius: 50%;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--teal-accent);
    font-weight: 600;
    line-height: 1;
}

.badge-txt {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-warm-white);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. INTERACTIVE MENU SECTION
   -------------------------------------------------------------------------- */
.menu-section {
    padding: var(--section-padding);
    background-color: var(--bg-deep-black);
    position: relative;
}

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

.tab-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted-gray);
    border: 1px solid var(--border-dark-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.01);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--text-pure-white);
    background: var(--gold-gradient-soft);
    border-color: var(--pink-accent);
    box-shadow: 0 4px 15px rgba(245, 128, 37, 0.2);
}

/* Menu Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 5rem;
    margin-bottom: 6rem;
}

/* Menu Item Card clickable state triggers */
.menu-item-card {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    transform: scale(1);
    cursor: pointer;
    border: 1px solid transparent;
    padding: 1.5rem;
    margin: -1.5rem;
}

.menu-item-card:hover {
    background-color: rgba(18, 14, 42, 0.4);
    border-color: var(--border-teal-soft);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Animation states for Javascript Filtering */
.menu-item-card.hide {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.6rem;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-pure-white);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.menu-item-card:hover .item-name {
    color: var(--teal-accent);
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.item-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border-gold-soft) 0%, rgba(255, 255, 255, 0.02) 100%);
    margin-bottom: 0.8rem;
}

.item-desc {
    color: var(--text-muted-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.item-tags {
    display: flex;
    gap: 0.6rem;
}

.tag-diet {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pink-accent);
    border: 1px solid var(--border-pink-soft);
    padding: 0.2rem 0.5rem;
    background-color: rgba(233, 30, 99, 0.02);
}

/* Feature Dish Highlight Banner */
.menu-visual-highlight {
    margin-top: 6rem;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--bg-rich-charcoal);
    border: 1px solid var(--border-dark-gray);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.highlight-img-box {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-right: 1px solid var(--border-dark-gray);
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-img {
    transform: scale(1.05);
}

.highlight-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.highlight-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--text-pure-white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.highlight-text {
    color: var(--text-muted-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Food Allergy Disclaimer Box */
.allergy-notice-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: rgba(233, 30, 99, 0.04);
    border: 1px dashed var(--border-pink-soft);
    padding: 0.8rem 1.8rem;
    margin: 1.8rem auto 0;
    max-width: 820px;
    width: auto;
    text-align: center;
}

.allergy-icon {
    color: var(--pink-accent);
    flex-shrink: 0;
    animation: flashIcon 2.5s infinite alternate ease-in-out;
}

@keyframes flashIcon {
    0% { opacity: 0.5; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1.04); }
}

.allergy-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted-gray);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7A. GOOGLE MAPS REVIEWS SECTION STYLING
   -------------------------------------------------------------------------- */
.reviews-section {
    padding: var(--section-padding);
    background-color: var(--bg-dark-obsidian);
}

/* Reviews Stats Grid Upgrade */
.reviews-stats-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 2rem;
    background-color: var(--bg-rich-charcoal);
    border: 1px solid var(--border-gold-soft);
    padding: 3rem;
    margin-bottom: 5rem;
    box-shadow: var(--card-shadow);
}

.stats-card-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid var(--border-dark-gray);
    padding-right: 2.2rem;
}

.google-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.2rem;
}

.verified-pill {
    background: var(--teal-gradient);
    color: var(--text-pure-white);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.2);
}

.rating-display-big {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.rating-avg {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-pure-white);
    line-height: 1;
    font-family: var(--font-body);
}

.stars-outer {
    position: relative;
    display: inline-block;
}

.stars-val-big {
    color: #ffc107;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.rating-count-text {
    font-size: 0.75rem;
    color: var(--text-muted-gray);
    line-height: 1.5;
}

/* Breakdown chart card */
.stats-card-breakdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    border-right: 1px solid var(--border-dark-gray);
    padding-right: 2.2rem;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
}

.breakdown-label {
    width: 80px;
    color: var(--text-muted-gray);
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
}

.bar-container {
    flex-grow: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #ffc107;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

.breakdown-pct {
    width: 32px;
    color: var(--text-muted-gray);
    font-weight: 600;
    text-align: right;
}

/* Actions Card */
.stats-card-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 1rem;
}

.stats-actions-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-pure-white);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.stats-actions-desc {
    font-size: 0.82rem;
    color: var(--text-muted-gray);
    line-height: 1.6;
}

.stats-actions-buttons {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-write-rev {
    box-shadow: 0 4px 15px rgba(245, 128, 37, 0.15);
}

.btn-view-maps {
    border-color: var(--border-light-glow);
}

.btn-view-maps:hover {
    border-color: var(--teal-accent);
}

/* Reviews Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background-color: var(--bg-deep-black);
    border: 1px solid var(--border-dark-gray);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--border-gold-soft);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(245, 128, 37, 0.1);
}

.review-user-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg-deep-black);
    flex-shrink: 0;
}

.review-avatar.orange { background-color: var(--gold-primary); }
.review-avatar.pink { background-color: var(--pink-accent); }
.review-avatar.teal { background-color: var(--teal-accent); }

.review-user-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-pure-white);
}

.review-user-sub {
    font-size: 0.65rem;
    color: var(--text-dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-g-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.review-stars {
    color: #ffc107;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-muted-gray);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.review-date {
    font-size: 0.7rem;
    color: var(--text-dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   8. RESERVATIONS & EVENTS SECTION WITH LIVE CALENDAR
   -------------------------------------------------------------------------- */
.reservations-section {
    padding: var(--section-padding);
    background-image: url('Img/Fondo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.reservations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 4, 15, 0.94);
    z-index: 0;
}

/* Split Box: Form (Left) & Calendar (Right) */
.reservation-box-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background-color: var(--bg-card-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light-glow);
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.reservation-form-side {
    padding: 4.5rem;
    border-right: 1px solid var(--border-dark-gray);
}

.reservation-calendar-side {
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.calendar-side-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-pure-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.calendar-side-subtitle {
    color: var(--text-muted-gray);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8A. INTERACTIVE CALENDAR WIDGET
   -------------------------------------------------------------------------- */
.custom-calendar-box {
    background-color: rgba(6, 4, 15, 0.5);
    border: 1px solid var(--border-dark-gray);
    padding: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

.calendar-header-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark-gray);
    padding-bottom: 0.8rem;
}

.cal-month-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-warm-white);
}

.cal-nav-btn {
    color: var(--gold-primary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.2rem 0.6rem;
    transition: var(--transition-fast);
}

.cal-nav-btn:hover {
    color: var(--pink-accent);
}

.calendar-weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark-gray);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

/* Day Item Base */
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid transparent;
}

/* Day State Colors */
.cal-day.day-available {
    color: var(--text-warm-white);
    background-color: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.2);
}

.cal-day.day-available:hover {
    background-color: rgba(76, 175, 80, 0.35);
    border-color: #4caf50;
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
    z-index: 2;
}

.cal-day.day-pending {
    color: #ffd54f;
    background-color: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.cal-day.day-pending:hover {
    background-color: rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
    transform: scale(1.08);
    z-index: 2;
}

.cal-day.day-reserved {
    color: #ef9a9a;
    background-color: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.3);
    cursor: not-allowed;
}

.cal-day.day-reserved:hover {
    background-color: rgba(244, 67, 54, 0.25);
    border-color: #f44336;
}

.cal-day.day-disabled {
    color: var(--text-dark-gray);
    opacity: 0.25;
    cursor: not-allowed;
    background-color: transparent;
    border-color: transparent;
}

.cal-day.day-active-selected {
    border: 2px solid var(--teal-accent) !important;
    box-shadow: 0 0 12px rgba(0, 180, 216, 0.4);
    font-weight: 700;
    transform: scale(1.05);
}

/* Legend Box */
.calendar-legend-box {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    border-top: 1px solid var(--border-dark-gray);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.green { background-color: #4caf50; box-shadow: 0 0 8px rgba(76, 175, 80, 0.5); }
.legend-dot.yellow { background-color: #ffc107; box-shadow: 0 0 8px rgba(255, 193, 7, 0.5); }
.legend-dot.red { background-color: #f44336; box-shadow: 0 0 8px rgba(244, 67, 54, 0.5); }

.legend-lbl {
    font-size: 0.75rem;
    color: var(--text-muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Booking Form Elements */
.booking-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-warm-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: rgba(6, 4, 15, 0.6);
    border: 1px solid var(--border-dark-gray);
    color: var(--text-pure-white);
    font-size: 0.85rem;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-accent);
    background-color: rgba(6, 4, 15, 0.9);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.1);
}

.form-group input[readonly] {
    cursor: pointer;
    background-color: rgba(0, 180, 216, 0.03);
    border-color: var(--border-teal-soft);
    color: var(--teal-accent);
    font-weight: 500;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f58025' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-left: 0.9rem;
    padding-right: 2.2rem;
}

.form-group select option {
    background-color: #0c0a1a;
    color: var(--text-pure-white);
}

/* Custom US Date Input Overlay Wrapper */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input-wrapper input[type="text"] {
    position: relative;
    width: 100%;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f58025' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='4' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' x2='16' y1='2' y2='6'%3E%3C/line%3E%3Cline x1='8' x2='8' y1='2' y2='6'%3E%3C/line%3E%3Cline x1='3' x2='21' y1='10' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.date-input-wrapper input[type="date"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    pointer-events: none;
    z-index: -1;
}

.form-group textarea {
    resize: none;
}

/* Validation Errors */
.form-group.invalid input,
.form-group.invalid select {
    border-color: #e57373;
}

.error-msg {
    font-size: 0.65rem;
    color: #e57373;
    position: absolute;
    bottom: -1.2rem;
    left: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--transition-fast);
    pointer-events: none;
    z-index: 2;
}

.form-group.invalid .error-msg {
    opacity: 1;
    transform: translateY(0);
}

/* Spinner Loader */
.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--text-pure-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-gold.loading .spinner {
    display: inline-block;
}

.btn-gold.loading .btn-text {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   9. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-dark-obsidian);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info-panel {
    padding-right: 2rem;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
}

.detail-icon {
    color: var(--pink-accent);
    background-color: rgba(233, 30, 99, 0.04);
    border: 1px solid var(--border-pink-soft);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink-accent);
}

.detail-text {
    color: var(--text-muted-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-gold {
    color: var(--gold-primary);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   9A. REAL INTERACTIVE GOOGLE MAP STYLE
   -------------------------------------------------------------------------- */
.map-panel {
    height: 520px;
    border: 1px solid var(--border-dark-gray);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Inverted Dark-mode styling for integrated Google Map */
.real-google-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* Upgraded Google Maps Premium Card Overlay */
.google-maps-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 380px;
    background-color: rgba(10, 8, 26, 0.94);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light-glow);
    padding: 2.2rem;
    box-shadow: var(--card-shadow);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.google-maps-card:hover {
    border-color: var(--border-gold-soft);
    box-shadow: 0 20px 45px rgba(245, 128, 37, 0.15);
}

.maps-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.maps-logo-section {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.maps-logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--pink-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--pink-accent);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 8px rgba(233, 30, 99, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

.maps-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-pure-white);
    line-height: 1;
}

.maps-status-pill {
    background-color: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
}

.maps-card-category {
    font-size: 0.75rem;
    color: var(--text-muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: -0.4rem;
}

.maps-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.maps-rating-val {
    color: var(--text-pure-white);
}

.maps-rating-stars {
    color: #ffc107;
    letter-spacing: 1px;
}

.maps-rating-count {
    color: var(--text-dark-gray);
    font-weight: 400;
}

.maps-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0.4rem 0;
}

.maps-detail-line {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.maps-detail-icon {
    color: var(--text-dark-gray);
    flex-shrink: 0;
}

.maps-detail-icon.text-teal {
    color: var(--teal-accent);
}

.maps-detail-text {
    font-size: 0.8rem;
    color: var(--text-muted-gray);
    line-height: 1.4;
}

.maps-detail-text.text-teal {
    color: var(--teal-accent);
    font-weight: 500;
}

.maps-actions-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.maps-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    height: 38px;
    flex-grow: 1;
    transition: var(--transition-fast);
}

.maps-btn-primary {
    background: var(--gold-gradient-soft);
    color: var(--text-pure-white);
    box-shadow: 0 4px 10px rgba(245, 128, 37, 0.15);
}

.maps-btn-primary:hover {
    background: var(--gold-gradient);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(245, 128, 37, 0.3);
}

.maps-btn-secondary {
    border: 1px solid var(--border-dark-gray);
    color: var(--text-muted-gray);
    background-color: rgba(255, 255, 255, 0.02);
}

.maps-btn-secondary:hover {
    border-color: var(--teal-accent);
    color: var(--teal-accent);
    background-color: rgba(0, 180, 216, 0.03);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--bg-deep-black);
    border-top: 1px solid var(--border-dark-gray);
    padding: 6rem 2rem 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted-gray);
    line-height: 1.8;
}

.footer-links-row {
    display: flex;
    gap: 6rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.footer-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-pure-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted-gray);
}

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

/* Admin trigger button in footer */
.admin-trigger-row {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
}

.admin-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border: 1px dashed var(--text-dark-gray);
}

.admin-trigger-btn:hover {
    color: var(--teal-accent);
    border-color: var(--teal-accent);
    background-color: rgba(0, 180, 216, 0.02);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-dark-gray);
    padding-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-dark-gray);
    text-align: center;
}

/* --------------------------------------------------------------------------
   11. EVENT CONFIRMATION DIALOG / MODAL
   -------------------------------------------------------------------------- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 3, 15, 0.96);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal {
    background-color: var(--bg-rich-charcoal);
    border: 1px solid var(--pink-accent);
    box-shadow: 0 0 50px rgba(233, 30, 99, 0.15);
    padding: 4rem 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}

.modal-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(233, 30, 99, 0.05);
    border: 1px solid var(--border-pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-pure-white);
    margin-bottom: 1rem;
}

.modal-text {
    font-size: 0.85rem;
    color: var(--text-muted-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-details {
    background-color: rgba(6, 4, 15, 0.6);
    border: 1px solid var(--border-dark-gray);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-detail-row {
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.modal-detail-lbl {
    color: var(--text-dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-detail-val {
    color: var(--text-warm-white);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   12. INTERACTIVE EVENT APPROVAL ADMIN PORTAL PANEL (DASHBOARD)
   -------------------------------------------------------------------------- */
.admin-portal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 3, 15, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 2.5rem;
}

.admin-portal.active {
    opacity: 1;
    pointer-events: auto;
}

.admin-portal-box {
    background-color: var(--bg-rich-charcoal);
    border: 1px solid var(--border-gold-soft);
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 1140px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(40px) scale(0.98);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.admin-portal.active .admin-portal-box {
    transform: translateY(0) scale(1);
}

.admin-portal-header {
    padding: 2.5rem 3rem;
    border-bottom: 1px solid var(--border-dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.admin-portal-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-pure-white);
    letter-spacing: 0.01em;
}

.admin-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted-gray);
    margin-top: 0.4rem;
}

.admin-close-btn {
    font-size: 2.5rem;
    line-height: 0.7;
    color: var(--text-dark-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-close-btn:hover {
    color: var(--pink-accent);
}

.admin-portal-content {
    padding: 2.5rem 3rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-actions-bar {
    display: flex;
    justify-content: flex-end;
}

/* Database Table */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-dark-gray);
    background-color: rgba(6, 4, 15, 0.4);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.8rem;
}

.admin-table th {
    background-color: rgba(6, 4, 15, 0.8);
    color: var(--teal-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--border-dark-gray);
}

.admin-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-muted-gray);
    border-bottom: 1px solid var(--border-dark-gray);
    font-weight: 400;
}

.admin-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
}

.status-badge.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffd54f;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.status-approved {
    background-color: rgba(76, 175, 80, 0.1);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.status-rejected {
    background-color: rgba(244, 67, 54, 0.1);
    color: #e57373;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Approval Actions Buttons */
.btn-approve,
.btn-reject {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-approve {
    border: 1px solid #4caf50;
    color: #4caf50;
    background-color: rgba(76, 175, 80, 0.02);
    margin-right: 0.5rem;
}

.btn-approve:hover {
    background-color: #4caf50;
    color: #05030f;
}

.btn-reject {
    border: 1px solid #f44336;
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.02);
}

.btn-reject:hover {
    background-color: #f44336;
    color: #05030f;
}

/* --------------------------------------------------------------------------
   12A. PREMIUM INTERACTIVE PRODUCT DETAIL MODAL (FOOD DETAILED VIEW)
   -------------------------------------------------------------------------- */
.product-modal {
    max-width: 550px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-color: var(--teal-accent);
    box-shadow: 0 0 50px rgba(0, 180, 216, 0.18);
}

.modal-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(5, 3, 15, 0.7);
    border: 1px solid var(--border-light-glow);
    color: var(--text-warm-white);
    font-size: 1.5rem;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.modal-close-x:hover {
    background-color: var(--pink-accent);
    border-color: var(--pink-accent);
    color: var(--text-pure-white);
    transform: rotate(90deg);
}

.product-modal-img-box {
    width: 100%;
    height: 290px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-dark-gray);
}

.product-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-modal-content {
    padding: 2.5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.product-modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-dark-gray);
    padding-bottom: 0.8rem;
}

.product-modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-pure-white);
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.product-modal-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    line-height: 1.1;
}

.product-modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted-gray);
    line-height: 1.7;
}

.product-modal-tags {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.product-modal-action-row {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   13. RESPONSIVENESS (BREAKPOINTS)
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .reservation-box-split {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-side {
        border-right: none;
        border-bottom: 1px solid var(--border-dark-gray);
        padding: 3.5rem 2.5rem;
    }
    
    .reservation-calendar-side {
        padding: 3.5rem 2.5rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 6rem 2rem;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .story-content-box,
    .contact-info-panel {
        padding-right: 0;
    }
    
    .story-img {
        height: 420px;
    }
    
    .highlight-card {
        grid-template-columns: 1fr;
    }
    
    .highlight-img-box {
        height: 300px;
        border-right: none;
        border-bottom: 1px solid var(--border-dark-gray);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .admin-portal {
        padding: 1.5rem;
    }
    
    .admin-portal-header {
        padding: 1.5rem;
    }
    
    .admin-portal-content {
        padding: 1.5rem;
    }
    
    .product-modal-content {
        padding: 2rem 2.2rem 2.5rem;
    }

    /* Detailed reviews stats grid responsiveness */
    .reviews-stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .stats-card-main {
        border-right: none;
        border-bottom: 1px solid var(--border-dark-gray);
        padding-right: 0;
        padding-bottom: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .google-logo-row {
        justify-content: center;
        gap: 2rem;
    }
    
    .rating-display-big {
        justify-content: center;
    }
    
    .stats-card-breakdown {
        border-right: none;
        border-bottom: 1px solid var(--border-dark-gray);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    .stats-card-actions {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    
    .stats-actions-buttons {
        justify-content: center;
    }
}

/* Mobile-only DoorDash button (hidden on desktop) */
.mobile-nav-order-btn {
    display: none !important;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 1.5rem;
    }
    
    .header.scrolled {
        padding: 0;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .header.scrolled .header-container {
        padding: 0.65rem 1.5rem !important;
    }
    
    .logo-img-file {
        height: 55px;
    }
    
    .header.scrolled .logo-img-file {
        height: 45px;
    }
    
    .mobile-nav-order-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-dark-obsidian);
        border-left: 1px solid var(--border-dark-gray);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        z-index: 100;
        transition: cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
        padding: 3rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-actions-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .hero-actions-container .btn {
        width: 100%;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .reservation-form-side,
    .reservation-calendar-side {
        padding: 2.5rem 1.2rem;
    }
    
    .highlight-content {
        padding: 2.5rem 1.5rem;
    }
    
    .highlight-title {
        font-size: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links-row {
        gap: 4rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .map-panel {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .real-google-map {
        height: 320px;
    }
    
    .google-maps-card {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 1.8rem;
        background-color: var(--bg-rich-charcoal);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .image-wrapper {
        width: 100%;
    }
    
    .border-decoration {
        display: none;
    }
    
    .booking-modal {
        padding: 3rem 1.5rem;
    }
    
    .admin-portal {
        padding: 0.5rem;
    }
    
    .admin-portal-header {
        padding: 1.2rem 1rem;
    }
    
    .admin-portal-header h2 {
        font-size: 1.6rem;
    }
    
    .admin-portal-content {
        padding: 1rem 0.8rem;
    }
    
    .product-modal-img-box {
        height: 200px;
    }
}

/* Hide dietary tags (vegetarian, vegan, gluten-free) as requested */
[data-i18n="tag_veg"],
[data-i18n="tag_gf"],
[data-i18n="tag_vegan"] {
    display: none !important;
}

/* Hide admin trigger row by default (accessible via URL query param admin=true) */
.admin-trigger-row {
    display: none !important;
}

/* Mobile Category Tabs Horizontal Scrollbar Styling */
@media (max-width: 768px) {
    .menu-tabs {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1.5rem 1.2rem 1.5rem !important;
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
        margin-bottom: 2.5rem !important;
        gap: 0.8rem !important;
    }
    
    .menu-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .menu-tabs::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.02);
    }
    
    .menu-tabs::-webkit-scrollbar-thumb {
        background: rgba(245, 128, 37, 0.4);
        border-radius: 2px;
    }
    
    .tab-btn {
        flex-shrink: 0 !important;
        padding: 0.7rem 1.4rem !important;
    }
}

