/* ==========================================================================
   IL GIARDINO FETHIYE - Stylesheet
   ========================================================================== */

/* 1. ROOT DESIGN TOKENS */
:root {
    /* Color Palette */
    --primary-color: #1E3A27;       /* Deep Forest Green */
    --primary-hover: #132519;
    --primary-rgb: 30, 58, 39;
    
    --secondary-color: #C05C3E;     /* Terracotta */
    --secondary-hover: #A54A2F;
    --secondary-rgb: 192, 92, 62;
    
    --accent-color: #D4AF37;        /* Gold */
    --accent-hover: #B7952C;
    --accent-rgb: 212, 175, 55;
    
    --bg-cream: #FFFFFF;            /* Pure White */
    --bg-white: #FFFFFF;
    --bg-dark-slate: #151515;       /* Sleek Charcoal */
    --bg-dark-card: #222222;
    
    --text-dark: #1A1A1A;
    --text-light: #FAF8F5;
    --text-muted: #5E6961;          /* Warm Slate Grey */
    --text-muted-light: #CCCCCC;
    
    --border-color: #E6E2DC;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 15px 35px rgba(30, 58, 39, 0.08);
    --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Layout */
    --header-height: 115px;
    --header-shrink-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

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

/* 3. REUSABLE UTILITIES & COMPONENTS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding {
    padding: 100px 0;
}

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

.hidden {
    display: none !important;
}

.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    box-shadow: 0 5px 15px rgba(30, 58, 39, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 39, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-cream);
    border-color: var(--bg-cream);
}

.btn-secondary:hover {
    background-color: var(--bg-cream);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-cream);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Headings */
.section-subtitle {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 30px;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background-color: var(--secondary-color);
    z-index: 2000;
    transition: width 0.1s ease-out;
}

/* 4. HEADER & NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    height: var(--header-shrink-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 58, 39, 0.08);
    box-shadow: var(--shadow-soft);
}

.header-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 105px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    /* Invert colors initially for transparent dark hero background */
    filter: brightness(0) invert(1);
}

.main-header.scrolled .logo-img {
    height: 80px;
    /* Remove white invert filter for white background scrolled header (so it displays black) */
    filter: none;
}

body.menu-page .main-header:not(.scrolled) .logo-img {
    /* Keep black logo format on non-scrolled menu pages since they have white background headers */
    filter: none;
}

.logo-il {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
    color: var(--bg-cream);
    transition: var(--transition-fast);
}

.logo-giardino {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bg-cream);
    margin-top: -5px;
    transition: var(--transition-fast);
}

.logo-sub {
    font-family: var(--font-alt);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-top: 3px;
    text-transform: uppercase;
}

.main-header.scrolled .logo-il,
.main-header.scrolled .logo-giardino {
    color: var(--primary-color);
}

/* Navigation Links */
.navbar {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(250, 248, 245, 0.8);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--bg-cream);
}

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

.main-header.scrolled .nav-link {
    color: var(--text-muted);
}

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

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

.lang-switch-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(250, 248, 245, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    cursor: pointer;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.lang-switch-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: rotate(360deg);
}

.main-header.scrolled .lang-switch-btn {
    border-color: rgba(30, 58, 39, 0.2);
    color: var(--primary-color);
}

.main-header.scrolled .lang-switch-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(250, 248, 245, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-right: 12px;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

.main-header.scrolled .theme-toggle-btn {
    border-color: rgba(30, 58, 39, 0.2);
    color: var(--primary-color);
}

.main-header.scrolled .theme-toggle-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

body.menu-page .main-header:not(.scrolled) .theme-toggle-btn {
    color: var(--text-muted);
    border-color: rgba(30, 58, 39, 0.2);
}

body.menu-page .main-header:not(.scrolled) .theme-toggle-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--bg-cream);
    transition: var(--transition-fast);
}

.main-header.scrolled .mobile-nav-toggle .bar {
    background-color: var(--primary-color);
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-cream);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomOutEffect 15s infinite alternate ease-in-out;
}

/* Hero background VIDEO (shown instead of .hero-bg when video is selected) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}
/* Overlay gradient on top of hero video */
.hero-section:has(> .hero-video[style*="block"]) .hero-content {
    position: relative;
    z-index: 3;
}
.hero-section:has(> .hero-video[style*="block"])::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6));
    z-index: 2;
    pointer-events: none;
}

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

.hero-subtitle {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 25px;
    animation: fadeInUp 1s 0.2s ease forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(250, 248, 245, 0.95);
    line-height: 1.7;
    animation: fadeInUp 1s 0.4s ease forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s 0.6s ease forwards;
    opacity: 0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-alt);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* 5b. MENU PAGE HERO & HEADER SPECIFICS */
.menu-hero-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-cream);
    overflow: hidden;
    margin-top: var(--header-height);
}

.menu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

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

/* Header style specifically when on the menu page and not scrolled */
body.menu-page .main-header:not(.scrolled) {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

body.menu-page .main-header:not(.scrolled) .nav-link {
    color: var(--text-muted);
}

body.menu-page .main-header:not(.scrolled) .nav-link:hover,
body.menu-page .main-header:not(.scrolled) .nav-link.active {
    color: var(--primary-color);
}

body.menu-page .main-header:not(.scrolled) .logo-il,
body.menu-page .main-header:not(.scrolled) .logo-giardino {
    color: var(--primary-color);
}

body.menu-page .main-header:not(.scrolled) .logo-sub {
    color: var(--secondary-color);
}

body.menu-page .main-header:not(.scrolled) .lang-switch-btn {
    color: var(--text-muted);
    border-color: rgba(30, 58, 39, 0.2);
}

body.menu-page .main-header:not(.scrolled) .lang-switch-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

body.menu-page .main-header:not(.scrolled) .mobile-nav-toggle .bar {
    background-color: var(--primary-color);
}

/* 6. ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-p {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(30, 58, 39, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.highlight-item:hover .highlight-icon {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    transform: scale(1.1);
}

.highlight-title {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* About image collage */
.about-img-container {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-img-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.about-img-card:hover {
    transform: scale(1.02);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* About section VIDEO (shown instead of .about-img when video is selected) */
.about-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: inherit;
}

.about-experience-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background-color: var(--secondary-color);
    color: var(--bg-cream);
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    text-align: center;
    display: flex;
    flex-direction: column;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* 7. MENU SECTION */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu-tab-btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--bg-white);
    color: var(--text-muted);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    border-color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.menu-item-card {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.menu-item-img-wrapper {
    width: 160px;
    height: 100%;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

.menu-item-card:hover .menu-item-img {
    transform: scale(1.08);
}

/* Menu Item Video */
.menu-item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-item-card:hover .menu-item-video {
    transform: scale(1.05);
}

.menu-video-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    animation: videoPulse 2s ease-in-out infinite;
}

@keyframes videoPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.menu-item-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.menu-item-price {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
    margin-left: 15px;
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.4;
}

.menu-item-details-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.menu-item-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item-detail i {
    color: var(--secondary-color);
}

.menu-item-tags {
    display: flex;
    gap: 8px;
}

.tag-badge {
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-chef {
    background-color: rgba(192, 92, 62, 0.1);
    color: var(--secondary-color);
}

.tag-veg {
    background-color: rgba(30, 58, 39, 0.1);
    color: var(--primary-color);
}

.tag-gf {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-hover);
}

.tag-vegan {
    background-color: rgba(34, 139, 34, 0.12);
    color: #228B22;
    border: 1px solid rgba(34, 139, 34, 0.25);
}

.tag-popular {
    background-color: rgba(220, 60, 20, 0.1);
    color: #C0380A;
    border: 1px solid rgba(220, 60, 20, 0.25);
}

/* -------------------------------------------------- */
/* EN ÇOK TERCİH EDİLEN — POPULAR SECTION (index.html) */
/* -------------------------------------------------- */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.popular-item-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.popular-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.popular-item-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.popular-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-item-card:hover .popular-item-img {
    transform: scale(1.06);
}

.popular-item-ribbon {
    position: absolute;
    top: 14px;
    left: -4px;
    background: linear-gradient(135deg, #C0380A, #E05A20);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 14px 5px 12px;
    border-radius: 0 4px 4px 0;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.popular-item-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.popular-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.popular-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.popular-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.popular-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.popular-item-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.popular-item-btn {
    font-size: 0.78rem;
    padding: 6px 16px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .popular-grid {
        grid-template-columns: 1fr;
    }
    .popular-item-img-wrap {
        height: 180px;
    }
}


.menu-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 40px;
}

/* 8. INTERACTIVE SEATING MAP */
.map-layout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    grid-column: 1 / -1;
    background-color: var(--bg-white);
    padding: 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.zone-garden { background-color: var(--primary-color); }
.zone-terrace { background-color: var(--secondary-color); }
.zone-salon { background-color: var(--accent-color); }
.zone-kids { background-color: #555555; }

.svg-map-wrapper {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.restaurant-svg-map {
    width: 100%;
    height: auto;
}

.map-boundary {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 2;
}

.map-zone {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.zone-bg {
    fill: #F0EDE8;
    stroke: var(--border-color);
    stroke-width: 1.5;
    transition: var(--transition-smooth);
}

#zone-garden-side .zone-bg { fill: rgba(30, 58, 39, 0.04); }
#zone-terrace .zone-bg { fill: rgba(192, 92, 62, 0.04); }
#zone-salon .zone-bg { fill: rgba(212, 175, 55, 0.04); }
#zone-kids .zone-bg { fill: rgba(85, 85, 85, 0.04); }

.map-zone:hover .zone-bg,
.map-zone.active .zone-bg {
    stroke-width: 2.5;
}

#zone-garden-side:hover .zone-bg,
#zone-garden-side.active .zone-bg {
    fill: rgba(30, 58, 39, 0.12);
    stroke: var(--primary-color);
}

#zone-terrace:hover .zone-bg,
#zone-terrace.active .zone-bg {
    fill: rgba(192, 92, 62, 0.12);
    stroke: var(--secondary-color);
}

#zone-salon:hover .zone-bg,
#zone-salon.active .zone-bg {
    fill: rgba(212, 175, 55, 0.15);
    stroke: var(--accent-color);
}

#zone-kids:hover .zone-bg,
#zone-kids.active .zone-bg {
    fill: rgba(85, 85, 85, 0.12);
    stroke: #555555;
}

.zone-label {
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 700;
    text-anchor: middle;
    fill: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zone-info {
    font-size: 11px;
    fill: var(--text-muted);
    text-anchor: middle;
    font-style: italic;
}

.botanical-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1;
    stroke-dasharray: 4, 4;
}

.map-table {
    fill: var(--bg-white);
    stroke: var(--border-color);
    stroke-width: 1.5;
    transition: var(--transition-fast);
}

.map-zone:hover .map-table {
    stroke: var(--text-muted);
}

.table-num {
    font-family: var(--font-alt);
    font-size: 10px;
    font-weight: 700;
    text-anchor: middle;
    fill: var(--text-muted);
}

/* Zone Panel Details Card */
.selected-zone-panel {
    background-color: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.panel-placeholder i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.panel-details {
    animation: fadeIn 0.4s ease;
}

.zone-title-display {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zone-desc-display {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.zone-attributes {
    margin-bottom: 30px;
}

.zone-attributes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.zone-attributes li i {
    color: var(--secondary-color);
    width: 18px;
}

/* 9. GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 250px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 39, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
}

.gallery-info {
    color: var(--bg-cream);
    font-family: var(--font-alt);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* 10. TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--primary-color);
    color: var(--bg-cream);
}

.testimonials-section .section-title {
    color: var(--bg-cream);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    opacity: 0.7;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reviewer-name {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.review-stars {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active, .dot:hover {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 10px;
}

/* 11. CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-card {
    background-color: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(192, 92, 62, 0.06);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-text h4 {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.detail-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.social-links-container {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Simulated map card styling */
.map-card-wrapper {
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    flex-grow: 1;
    height: 380px;
}

.simulated-map {
    width: 100%;
    height: 100%;
    background-color: #E5E3DF;
    background-image: 
        radial-gradient(#C6C4C0 1.5px, transparent 1.5px),
        radial-gradient(#C6C4C0 1.5px, #E5E3DF 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    position: relative;
    overflow: hidden;
}

/* Simulated roads */
.simulated-map::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 120%;
    height: 40px;
    background-color: #FFFFFF;
    transform: rotate(5deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.simulated-map::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 45%;
    width: 45px;
    height: 120%;
    background-color: #FFFFFF;
    transform: rotate(-10deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.map-marker-pin {
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 2.8rem;
    z-index: 10;
    cursor: pointer;
    text-shadow: 0 3px 5px rgba(0,0,0,0.15);
}

.map-marker-pin i {
    animation: bounce 2s infinite;
}

.marker-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-cream);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-alt);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent;
}

.map-watermark {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.4);
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}

.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-btn {
    width: 32px;
    height: 32px;
    background-color: var(--bg-white);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #555555;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 12. FOOTER & BACK TO TOP */
.main-footer {
    background-color: var(--bg-dark-slate);
    color: rgba(250, 248, 245, 0.6);
    padding: 40px 0;
    border-top: 1px solid rgba(250, 248, 245, 0.05);
}

.footer-bottom {
    font-size: 0.85rem;
}

.designer-credit {
    font-size: 0.75rem;
    margin-top: 10px;
    color: rgba(250, 248, 245, 0.35);
}

.designer-credit i {
    color: var(--secondary-color);
}

/* Back to top btn */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-cream);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* 13. RESERVATION MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 39, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-card {
    background-color: var(--bg-cream);
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-large);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

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

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.booking-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
}

.booking-modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Booking progress steps */
.booking-progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 450px;
    margin: 0 auto 35px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    border: 2px solid var(--border-color);
}

.step-label {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: -16px 10px 0;
    z-index: 1;
    transition: var(--transition-smooth);
}

.progress-step.active .step-num {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    border-color: var(--primary-color);
}

.progress-step.active .step-label {
    color: var(--primary-color);
}

.progress-step.completed .step-num {
    background-color: var(--secondary-color);
    color: var(--bg-cream);
    border-color: var(--secondary-color);
}

.progress-line.completed {
    background-color: var(--secondary-color);
}

/* Booking Step Contents */
.booking-step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-step-content.active {
    display: block;
}

.step-instruction {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Zone selection cards */
.zone-selector-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.zone-option-card {
    cursor: pointer;
}

.zone-option-card input[type="radio"] {
    display: none;
}

.zone-card-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    border: 1.5px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-smooth);
    height: 100%;
}

.zone-option-card:hover .zone-card-content {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.zone-option-card input[type="radio"]:checked + .zone-card-content {
    border-color: var(--secondary-color);
    background-color: rgba(192, 92, 62, 0.02);
    box-shadow: var(--shadow-medium);
}

.zone-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.zone-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
}

.zone-card-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Form layouts */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

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

.form-group label {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 39, 0.05);
}

.step-navigation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 30px;
}

/* Ticket Design */
.success-ticket-container {
    text-align: center;
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ticket-status-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.ticket-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 450px;
    margin: 0 auto 30px;
}

.ticket-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1.5px solid var(--border-color);
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* Serrated ticket notches on sides */
.ticket-card::before,
.ticket-card::after {
    content: '';
    position: absolute;
    top: 55px;
    width: 20px;
    height: 20px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    z-index: 10;
    border: 1.5px solid var(--border-color);
}

.ticket-card::before {
    left: -10px;
}

.ticket-card::after {
    right: -10px;
}

.ticket-card-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--bg-cream);
}

.ticket-restaurant-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.ticket-id-badge {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 20px;
}

.ticket-divider-line {
    border-top: 2.5px dashed var(--border-color);
    margin-top: 15px;
}

.ticket-card-body {
    padding: 25px 25px 20px;
    text-align: left;
}

.ticket-body-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

.ticket-body-grid div small {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ticket-body-grid div p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ticket-qr-container {
    grid-column: 2;
    grid-row: 2 / span 2;
    display: flex;
    justify-content: flex-end;
}

.ticket-qr {
    width: 90px;
    height: 90px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 5px;
    background-color: var(--bg-cream);
}

/* 14. RESPONSIVE MEDIA QUERIES */

/* Large Tablets / Small Desktops */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .about-grid {
        gap: 40px;
    }
    .menu-grid {
        gap: 20px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    :root {
        --header-height: 95px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    /* Mobile Header & Toggle */
    .mobile-nav-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(30, 58, 39, 0.08);
        box-shadow: var(--shadow-large);
    }

    .navbar.active {
        left: 0;
    }

    .nav-link {
        color: var(--text-muted) !important;
        font-size: 1.1rem;
    }

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

    /* Active burger state */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Logo scaling on mobile */
    .logo-img {
        height: 80px;
    }
    .main-header.scrolled .logo-img {
        height: 65px;
    }

    /* Hide reservation text on mobile */
    .btn-book {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-img {
        height: 300px;
    }
    .about-experience-badge {
        padding: 15px 25px;
    }
    .badge-num {
        font-size: 1.8rem;
    }

    /* Menu */
    .menu-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px 15px 15px 15px;
        margin-left: -15px;
        margin-right: -15px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 30px;
    }
    
    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab-btn {
        flex: 0 0 auto;
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-item-card {
        flex-direction: column;
    }
    .menu-item-img-wrapper {
        width: 100%;
        height: 180px;
        min-height: auto;
    }
    .menu-item-content {
        padding: 20px;
    }

    /* Seating Map Layout */
    .map-layout-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .map-legend {
        flex-wrap: wrap;
        border-radius: 15px;
        padding: 15px 10px;
        gap: 15px 20px;
    }

    /* Testimonial slider font */
    .review-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info-card {
        padding: 25px;
    }
    .map-container {
        height: 280px;
    }

    /* Modal */
    .booking-modal-card {
        padding: 30px 20px;
    }
    .booking-progress-steps {
        margin-bottom: 25px;
    }
    .step-label {
        font-size: 0.55rem;
    }
    .zone-selector-options {
        grid-template-columns: 1fr;
    }
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group.mt-3 {
        margin-top: 1rem !important;
    }
    .ticket-body-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .ticket-qr-container {
        grid-column: 1;
        justify-content: center;
        margin-top: 10px;
    }
    .ticket-card::before,
    .ticket-card::after {
        top: 55px;
    }
}

/* 15. KEYFRAMES ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOutEffect {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

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

@keyframes float {
    0% { transform: translateY(0px) translateX(-20px); }
    50% { transform: translateY(-10px) translateX(-20px); }
    100% { transform: translateY(0px) translateX(-20px); }
}

/* ==========================================================================
   EVENTS SECTION STYLING
   ========================================================================== */
.events-section {
    position: relative;
    overflow: hidden;
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: none;
    display: block;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.event-card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.event-card:hover .event-card-img {
    transform: scale(1.04);
}

/* Dark gradient overlay for text readability on top of background image */
.event-card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
    z-index: 2;
}

.event-card-date {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 29, 54, 0.3);
    z-index: 3;
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.event-card-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.event-card-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 750px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.event-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    padding-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.event-card-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ffffff;
}

/* Mobile Responsive Optimizations for New and Special Sections */
@media (max-width: 768px) {
    /* About Section Video height override to match image height */
    .about-video {
        height: 300px;
    }

    /* About badge position adjustment so it doesn't overflow mobile viewport */
    .about-experience-badge {
        left: 10px;
        bottom: 10px;
        padding: 12px 20px;
    }
    
    /* Highlights Grid layout on mobile */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Events Section Card responsive adjustments */
    .event-card {
        height: 340px;
    }
    .event-card-content {
        padding: 20px;
    }
    .event-card-title {
        font-size: 1.35rem;
    }
    .event-card-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    .event-card-date {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-experience-badge {
        padding: 8px 15px;
    }
    .badge-num {
        font-size: 1.4rem;
    }
    .badge-text {
        font-size: 0.65rem;
    }
}

.google-review-link {
    transition: var(--transition-fast) !important;
}
.google-review-link:hover {
    color: var(--bg-cream) !important;
    border-color: var(--bg-cream) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   DARK MODE SYSTEM
   ========================================================================== */
body.dark-theme {
    --bg-cream: #121212;            /* Sleek Dark Background */
    --bg-white: #1E1E1E;            /* Dark Card Background */
    --text-dark: #FAF8F5;           /* Off-White Text */
    --text-muted: #9EABA1;          /* Sage Grey */
    --border-color: #2D3A30;        /* Subtle Charcoal-Green Border */
    --primary-color: #5BA370;       /* Sage Green (Accessibility contrast) */
    --primary-hover: #488E5C;
    --primary-rgb: 91, 163, 112;
}

body.dark-theme .logo-img {
    filter: brightness(0) invert(1) !important;
}

body.dark-theme .main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-theme .testimonials-section {
    background-color: #122116;      /* Keep a rich deep forest green tone for the testimonial section */
    color: #FAF8F5;
}

body.dark-theme .testimonials-section .section-title {
    color: #FAF8F5;
}

body.dark-theme .google-review-link {
    color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

body.dark-theme .google-review-link:hover {
    color: var(--text-light) !important;
    border-color: var(--text-light) !important;
}

/* Custom Scrollbar for Dark Mode */
body.dark-theme::-webkit-scrollbar {
    width: 10px;
}
body.dark-theme::-webkit-scrollbar-track {
    background: #121212;
}
body.dark-theme::-webkit-scrollbar-thumb {
    background: #2D3A30;
    border-radius: 5px;
}
