﻿/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    /* Official Brand Colors */
    --brand-green: #327E09;
    --brand-yellow: #FDEF58;
    --brand-gray: #D5DBD8;
    --brand-black: #000000;
    --brand-gold: #D4AF37;

    /* Primary Background - Night First */
    --bg-primary: #000000;
    --bg-dark: #0A0A0A;
    --bg-elevated: #1A1A1A;
    --bg-card: rgba(213, 219, 216, 0.08);

    /* Text Colors - High Contrast */
    --text-primary: #FFFFFF;
    --text-secondary: #D5DBD8;
    --text-muted: rgba(213, 219, 216, 0.6);

    /* Green Accent - CTAs & Highlights */
    --green-primary: #327E09;
    --green-hover: #2A6907;
    --green-soft: rgba(50, 126, 9, 0.15);
    --green-glow: rgba(50, 126, 9, 0.4);

    /* Yellow Accent - Subtle Emphasis */
    --yellow-accent: #FDEF58;
    --yellow-soft: rgba(253, 239, 88, 0.12);
    --yellow-glow: rgba(253, 239, 88, 0.3);

    /* Gray - Containers & Support */
    --gray-primary: #D5DBD8;
    --gray-soft: rgba(213, 219, 216, 0.1);
    --gray-border: rgba(213, 219, 216, 0.15);

    /* Radius */
    --radius-soft: 12px;
    --radius-round: 24px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Motion */
    --motion-slow: 600ms;
    --motion-medium: 350ms;
    --transition-slow: var(--motion-slow) cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: var(--motion-medium) cubic-bezier(0.4, 0, 0.2, 1);
    --transition-subtle: 400ms ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   ZONE-BASED ARCHITECTURE
   =================================== */

/* All sections as distinct zones */
.section-zone {
    position: relative;
    padding: 5rem 0;
    min-height: 60vh;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* Desktop: Increased spacing for clear chapters */
@media (min-width: 1024px) {
    .section-zone {
        padding: 8rem 0;
        min-height: 70vh;
    }
}

/* Night-First Section Backgrounds */
.venue-zone {
    background: var(--bg-dark);
}

.gallery-zone {
    background: var(--bg-primary);
}

.whats-on-zone {
    background: var(--bg-dark);
}

.reserve-zone {
    background: linear-gradient(135deg, rgba(50, 126, 9, 0.08) 0%, var(--bg-primary) 100%);
    border-top: 1px solid rgba(50, 126, 9, 0.2);
    min-height: 80vh;
}

/* Section Borders for Visual Separation */
.section-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0.3;
}

/* ===================================
   NAVIGATION - STICKY
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 76px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-border);
    transition: background var(--transition-subtle);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 var(--spacing-lg);
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold-accent);
    display: none;
    /* Hidden since logo is self-contained */
}

/* Mobile Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 1001;
}

/* Mobile Reserve Button */
.nav-reserve-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-subtle);
}

.nav-reserve-btn:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--green-glow);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: var(--transition-subtle);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-subtle);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-2xl);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Hide header reserve button when menu is open */
.navbar:has(.mobile-menu.active) .nav-reserve-btn {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

.nav-links-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
}

.menu-link {
    display: inline-block;
    padding: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-subtle);
}

.menu-link:hover,
.menu-link.active {
    color: var(--yellow-accent);
    transform: scale(1.05);
}

.menu-link-cta {
    margin-top: var(--spacing-xl);
    width: 200px;
    text-align: center;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 20px;
}

.menu-link:hover {
    color: var(--gold-accent);
    text-decoration: none;
    border-bottom: none;
}

.menu-link:focus {
    text-decoration: none;
    border-bottom: none;
    outline: none;
}

.menu-link:active {
    text-decoration: none;
    border-bottom: none;
}

/* Active Mode State */
.menu-link.active {
    color: var(--yellow-accent);
    text-decoration: none;
    border-bottom: none;
}

/* Remove all underlines and borders */
.menu-link::after,
.menu-link.active::after,
.menu-link:hover::after,
.menu-link:focus::after {
    display: none !important;
}

/* Menu Dropdown (MENU -> Garden / Club) */
.menu-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.menu-dropdown-trigger .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.menu-dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-dropdown-items {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
}

.menu-dropdown-items.open {
    display: flex;
}

.menu-sublink {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.menu-link-cta {
    background: var(--green-primary);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-subtle);
}

.menu-link-cta:hover {
    background: var(--green-hover);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--green-glow);
}

/* ===================================
   HERO - SPLIT SCREEN LAYOUT
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 76px;
}

/* Text Side - Left */
.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--bg-dark);
    z-index: 2;
    max-width: 520px;
    margin-left: var(--spacing-xl);
}

/* Carousel Side - Right */
.hero-carousel {
    position: relative;
    flex: 1;
    min-height: 50vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Text Styling */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--green-soft);
    border: 1px solid rgba(50, 126, 9, 0.4);
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    color: var(--green-primary);
    align-self: flex-start;
}

.hero-subtitle {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--yellow-accent);
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1.2rem 3rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
    align-self: flex-start;
}

.btn-hero-primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--green-glow);
}

/* Hero CTA Container */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Secondary CTA - Text Link */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-subtle);
    position: relative;
}

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--text-secondary);
    opacity: 0.3;
    transition: opacity var(--transition-subtle);
}

.btn-hero-secondary:hover {
    color: var(--yellow-accent);
}

.btn-hero-secondary:hover::after {
    background: var(--yellow-accent);
    opacity: 1;
}

/* Desktop Split Screen */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
    }

    .hero-text {
        flex: 0 0 40%;
        padding: var(--spacing-2xl) var(--spacing-xl);
    }

    .hero-carousel {
        flex: 0 0 60%;
        min-height: 100vh;
    }
}

/* ===================================
   SECTIONS - CLEAN LAYOUT
   =================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.about {
    background: var(--bg-section);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--yellow-accent);
}

.section-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
}

/* ===================================
   EXPERIENCE - LIST LAYOUT
   =================================== */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.experience-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: var(--green-soft);
    border-left: 2px solid var(--green-primary);
    border-radius: 8px;
    transition: all var(--transition-subtle);
}

.experience-item:hover {
    background: var(--green-hover);
    transform: translateX(3px);
    border-left-width: 3px;
}

.item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.experience-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.experience-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===================================
   GALLERY - EDITORIAL CAROUSEL
   =================================== */
.gallery {
    background: var(--bg-section);
}

.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 3/2;
    /* Editorial ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-track {
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: all;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Subtle editorial navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 20, 25, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-subtle);
    z-index: 10;
    opacity: 0.5;
}

.carousel-btn:hover {
    opacity: 1;
    background: rgba(31, 122, 63, 0.6);
    border-color: var(--green-primary);
}

.carousel-btn.prev {
    left: var(--spacing-md);
}

.carousel-btn.next {
    right: var(--spacing-md);
}

/* Minimal editorial dots */
.gallery-dots {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all var(--transition-subtle);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background: var(--gold-accent);
    width: 24px;
    border-radius: 4px;
}

/* ===================================
   ACTIVITIES - CLEAN LIST
   =================================== */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.activity-item {
    text-align: center;
}

.activity-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold-accent);
}

.activity-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   RESERVATIONS - FORM
   =================================== */
.reservations {
    background: var(--bg-section);
    text-align: center;
}

/* Reserve Page - Dedicated Page Styling */
.reserve-page {
    padding-top: calc(76px + var(--spacing-2xl));
    min-height: 100vh;
}

.reservations-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-helper {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-2xl);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reservation Form Container */
.reservation-form {
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl) auto;
    text-align: left;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-subtle);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    background: rgba(255, 255, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-soft);
    cursor: pointer;
    transition: all var(--transition-subtle);
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.06);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--green-primary);
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    max-width: 600px;
    padding: 1.1rem;
    background: var(--green-primary);
    color: white;
    border: none;
    border-radius: var(--radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-subtle);
    margin: var(--spacing-xl) auto 0 auto;
    display: block;
}

.btn-submit:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--green-glow);
}

/* Opening Hours Display */
.hours-display {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--gray-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Success Message */
.reservation-success {
    display: none;
    text-align: center;
    padding: var(--spacing-2xl);
    background: rgba(31, 122, 63, 0.1);
    border-radius: var(--radius-soft);
    border: 1px solid var(--green-primary);
}

.reservation-success.show {
    display: block;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--spacing-lg);
}

.reservation-success h3 {
    color: var(--green-primary);
    margin-bottom: var(--spacing-sm);
}

.reservation-success p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.btn-new-reservation {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--green-primary);
    color: var(--green-primary);
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: all var(--transition-subtle);
}

.btn-new-reservation:hover {
    background: var(--green-primary);
    color: white;
}

.hours-display {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===================================
   CONTACT - CLEAN, NO MAP
   =================================== */
.contact-info {
    text-align: center;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.link-directions {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-subtle);
}

.link-directions:hover {
    color: var(--gold-accent);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-section);
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-accent);
    margin-bottom: 0.3rem;
}

.footer-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.footer-location {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   TABLET - 768px+
   =================================== */
@media (min-width: 768px) {
    .reservation-ctas {
        flex-direction: row;
        max-width: 600px;
    }

    .activities-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .activity-item {
        flex: 1;
        min-width: 250px;
    }

    .hamburger {
        display: none;
    }

    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        order: 1;
        z-index: 1001;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        order: 3;
        z-index: 1001;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        position: static;
        transform: none;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: auto;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
        order: 2;
    }

    .nav-links-center {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    .menu-link {
        padding: 0;
        font-size: 1rem;
        color: var(--text-secondary);
    }

    /* Reserve button - anchored right */
    .menu-link-cta {
        padding: 0.65rem 1.8rem !important;
        margin-left: auto;
        /* Push to right edge */
    }

    /* Desktop: float dropdown below trigger */
    .menu-dropdown-items {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem 1.75rem;
        border-radius: 8px;
        border: 1px solid var(--gray-border);
        margin-top: 0.75rem;
        min-width: 140px;
        gap: 0.75rem;
    }

    .menu-sublink {
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

/* ===================================
   DESKTOP - 1024px+ OPTIMIZATIONS
   =================================== */
@media (min-width: 1024px) {

    /* Max-width containers - cinematic 1200px */
    .container,
    .nav-container {
        max-width: 1200px;
        padding: 0 var(--spacing-xl);
    }

    .container-narrow {
        max-width: 950px;
        padding: 0 var(--spacing-xl);
    }

    /* Stronger desktop navigation - nightlife presence */
    .nav-container {
        padding: calc(var(--spacing-md) * 1.25) var(--spacing-xl);
    }

    /* Nav container relative for absolute centered links */
    .nav-container {
        position: relative;
    }

    .menu-link {
        font-size: 1rem;
        font-weight: 500;
        transition: color var(--transition-subtle);
    }

    /* Split hero layout - optimized spacing */
    .hero {
        padding-top: calc(76px + var(--spacing-xl));
    }

    .hero-text {
        padding: var(--spacing-2xl) calc(var(--spacing-2xl) * 1.5);
        max-width: 520px;
        margin-left: calc(var(--spacing-2xl) * 1.5);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    /* Gallery: Ultra-wide cinematic strip - 2 images max */
    .gallery-carousel {
        max-width: 1200px;
        aspect-ratio: 21/9;
        /* Ultra-wide cinematic */
    }

    /* Hide 3rd image on desktop for cleaner cinematic strip */
    .gallery-slide:nth-child(3) {
        display: none;
    }

    .carousel-btn {
        width: 60px;
        height: 60px;
        opacity: 0.6;
    }

    .carousel-btn:hover {
        opacity: 1;
    }

    /* Larger spacing between sections */
    section {
        padding: calc(var(--spacing-2xl) * 1.5) 0;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-xl);
    }

    /* Experience items in 2-column grid */
    .experience-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    .experience-item {
        padding: var(--spacing-xl);
    }

    /* Activities in 2x2 grid */
    .activities-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    .activity-item {
        min-width: auto;
    }

    /* Disable scroll animations on desktop */
    .experience-item,
    .activity-item,
    .section-lead,
    .section-text {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===================================
   ACCESSIBILITY - REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Disable hero carousel animation for reduced motion users */
    .carousel-slide {
        transition: none !important;
    }

    /* Disable scroll animations */
    .experience-item,
    .activity-item,
    .section-lead,
    .section-text {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===================================
   ICONOGRAPHY - LUCIDE STANDARDIZATION
   =================================== */
.lucide,
.lucide-icon {
    width: 1.2em;
    height: 1.2em;
    stroke-width: 2px;
    vertical-align: -0.2em;
}

.inline-icon {
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--yellow-accent);
}

.feature-icon .lucide,
.event-icon .lucide,
.experience-icon .lucide {
    width: 48px;
    height: 48px;
    color: var(--yellow-accent);
}

.feature-icon,
.event-icon,
.experience-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

/* ===================================
   PAGE-SPECIFIC STYLES
   =================================== */

/* Page Hero - Enhanced with Background Overlays */
.page-hero {
    position: relative;
    padding-top: calc(76px + var(--spacing-2xl));
    padding-bottom: var(--spacing-2xl);
    text-align: center;
    background-color: var(--bg-primary);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.page-hero .container-narrow {
    position: relative;
    z-index: 2;
}

/* Specific Page Hero Backgrounds */
.venue-page {
    background-image: url('images/garden.jpg');
}

.gallery-page {
    background-image: url('images/bar.jpg');
}

.whats-on-page {
    background-image: url('images/bar.jpg');
}

.reserve-page-hero {
    background-image: url('images/garden.jpg');
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: transparent;
    padding: var(--spacing-lg) 0;
    border-radius: 0;
    border: none;
    transition: all var(--transition-subtle);
}

.feature-card:hover {
    background: transparent;
    transform: translateX(10px);
    box-shadow: none;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    justify-content: flex-start;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.location-info {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-sm);
}

.info-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.info-detail {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Container */
.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
}

.btn-primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--green-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--gray-border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
}

.btn-secondary:hover {
    color: var(--yellow-accent);
    border-color: var(--yellow-accent);
    transform: translateY(-2px);
}

/* Venue Content */
.venue-content {
    background: var(--bg-primary);
}

.features-section {
    background: var(--bg-dark);
}

.location-section {
    background: var(--bg-primary);
}

/* Learn More Button */
.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--yellow-accent);
    text-decoration: none;
    border: 2px solid var(--yellow-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-subtle);
}

.btn-learn-more:hover {
    background: var(--yellow-accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--yellow-glow);
}

/* Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: transparent;
    padding: var(--spacing-xl) 0;
    border-radius: 0;
    border: none;
    text-align: center;
    transition: all var(--transition-subtle);
}

.event-card:hover {
    background: transparent;
    transform: translateY(-4px);
    box-shadow: none;
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    justify-content: center;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.event-time {
    color: var(--yellow-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gallery Caption */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Experience Blocks - What's Happening Page */
.intro-section {
    background: var(--bg-dark);
    padding: var(--spacing-2xl) 0;
}

.experiences-section {
    background: var(--bg-primary);
    padding: var(--spacing-2xl) 0;
}

.experience-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-soft);
    border: 1px solid var(--gray-border);
}

@media (min-width: 1024px) {
    .experience-block {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .experience-block.reverse {
        direction: rtl;
    }

    .experience-block.reverse .experience-content {
        direction: ltr;
    }
}

.experience-content {
    max-width: 600px;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    justify-content: flex-start;
}

.experience-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.experience-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.experience-highlight {
    font-size: 1rem;
    color: var(--green-primary);
    font-weight: 600;
    font-style: italic;
    padding: var(--spacing-sm) 0;
    background: transparent;
    border-left: none;
    border-radius: 0;
}

.final-cta-section {
    background: var(--bg-dark);
    padding: calc(var(--spacing-2xl) * 2) 0;
    text-align: center;
}

.final-cta-section .section-title {
    margin-bottom: var(--spacing-lg);
}

.final-cta-section .section-lead {
    margin-bottom: var(--spacing-2xl);
}

/* ===================================
   HOME PAGE PREVIEW SECTIONS
   =================================== */

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Preview Container - Shared */
.preview-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 !important;
}

.preview-container .preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-container .preview-content {
    padding: var(--spacing-xl) var(--spacing-md);
}

@media (min-width: 768px) {
    .preview-container {
        grid-template-columns: 1fr 1fr;
    }

    .preview-container .preview-image {
        min-height: 400px;
    }

    .preview-container .preview-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: var(--spacing-2xl) var(--spacing-xl);
    }

    .preview-container.reverse .preview-content {
        order: 1;
    }

    .preview-container.reverse .preview-image {
        order: 2;
    }
}

.preview-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.preview-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.preview-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
}

.preview-cta:hover {
    background: var(--green-hover);
    transform: translateX(4px);
    box-shadow: 0 8px 24px var(--green-glow);
}

/* Venue Preview */
.preview-venue {
    background: var(--bg-primary);
}

/* Gallery Preview - Full Width with Overlay */
.preview-gallery {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.preview-gallery-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
}

.preview-content-center {
    text-align: center;
    max-width: 800px;
}

.preview-cta-light {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--yellow-accent);
    text-decoration: none;
    border: 2px solid var(--yellow-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
}

.preview-cta-light:hover {
    background: var(--yellow-accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--yellow-glow);
}

/* What's Happening Preview */
.preview-happening {
    background: var(--bg-dark);
}

.preview-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-xl);
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--green-soft);
    color: var(--green-primary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(50, 126, 9, 0.3);
}

.highlight-tag.clickable {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-tag.clickable:hover {
    background: rgba(50, 126, 9, 0.25);
    border-color: var(--green-primary);
}

.highlight-tag.clickable.active {
    background: var(--green-primary);
    color: #fff;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.highlight-tag.clickable.active .dropdown-arrow {
    transform: rotate(180deg);
}

.highlight-dropdown {
    position: relative;
}

.highlight-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--bg-elevated);
    border-radius: var(--radius-soft);
    margin-top: 0;
}

.highlight-details.open {
    max-height: 300px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border: 1px solid var(--gray-border);
}

.highlight-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-details ul li {
    padding: 0.35rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--gray-border);
}

.highlight-details ul li:last-child {
    border-bottom: none;
}

.highlight-details ul li strong {
    color: var(--yellow-accent);
    margin-right: 0.5rem;
}

/* Reserve Preview - Centered CTA */
.preview-reserve {
    background: var(--bg-primary);
    padding: calc(var(--spacing-2xl) * 3) var(--spacing-xl);
    text-align: center;
}

.preview-title-large {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.preview-text-large {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.preview-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    padding: 1.3rem 3.5rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all var(--transition-subtle);
}

.btn-primary-large:hover {
    background: var(--green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--green-glow);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    padding: 1.3rem 3.5rem;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border: 2px solid var(--gray-border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all var(--transition-subtle);
}

.btn-secondary-large:hover {
    color: var(--yellow-accent);
    border-color: var(--yellow-accent);
    transform: translateY(-3px);
}

.preview-hours {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Location Map Styles */
.location-map {
    margin: var(--spacing-2xl) 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.location-map iframe {
    width: 100%;
    max-width: 100%;
    display: block;
}

.contact-details {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-sm);
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.btn-directions,
.btn-call {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
}

.btn-directions {
    background: var(--green-primary);
    color: white;
}

.btn-directions:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--green-glow);
}

.btn-call {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--gray-border);
}

.btn-call:hover {
    color: var(--yellow-accent);
    border-color: var(--yellow-accent);
    transform: translateY(-2px);
}

/* Contact Address and Helper Text */
.contact-address {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: var(--spacing-md) 0;
}

.contact-helper {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.info-helper {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

/* Directions Box Styles */
.directions-box {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-soft);
    border: 1px solid var(--gray-border);
    margin: var(--spacing-2xl) 0;
    text-align: center;
}

.directions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-md);
}

.directions-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.directions-helper {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.directions-ridehail {
    font-size: 0.95rem;
    color: var(--green-primary);
    background: var(--green-soft);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 3px solid var(--green-primary);
    line-height: 1.6;
}

.directions-ridehail strong {
    color: var(--green-primary);
    font-weight: 700;
}

/* Contact Ride-hailing Text */
.contact-ridehail {
    font-size: 0.95rem;
    color: var(--green-primary);
    background: var(--green-soft);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 3px solid var(--green-primary);
    line-height: 1.6;
    margin: var(--spacing-md) 0;
}

.contact-ridehail strong {
    color: var(--green-primary);
    font-weight: 700;
}

/* ===================================
   PAGE TRANSITIONS
   =================================== */

/* Ensure dark background during transitions */
html {
    background-color: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
}

/* Page transition wrapper */
.page-transition {
    animation: pageEnter 300ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Page enter animation - fade in with upward motion */
@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page exit animation - soft fade */
.page-exit {
    animation: pageExit 250ms ease-out forwards;
}

@keyframes pageExit {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Prevent navigation from transitioning */
.navbar {
    position: fixed;
    z-index: 1000;
}

/* Apply transition to main content areas */
main,
section:not(.navbar) {
    animation: pageEnter 300ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    .page-transition,
    main,
    section:not(.navbar) {
        animation: none !important;
    }

    .page-exit {
        animation: none !important;
    }
}

/* ===================================
   SMOOTH PAGE TRANSITIONS (Multi-Page)
   =================================== */

/* Ensure dark background - no white flash */
html,
body {
    background-color: var(--bg-primary);
    min-height: 100vh;
}

/* Page transition wrapper - initial state (hidden) */
/* ===================================
   PAGE TRANSITIONS - CALM FADE ONLY
   =================================== */

/* Initial state - MUST start at opacity 0 to prevent flash */
.page-transition {
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page loaded state - calm fade in */
.page-transition.loaded {
    opacity: 1;
}

/* Page exit state - smooth fade out */
.page-transition.exiting {
    opacity: 0;
    transition: opacity 250ms ease-out;
}

/* Keep navigation fixed and prevent it from transitioning */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .page-transition,
    .page-transition.loaded,
    .page-transition.exiting {
        transition: none !important;
        opacity: 1 !important;
    }
}

/* ===================================
   HERO SECTION - FULL COVER CAROUSEL
   =================================== */

/* Hero Container */
.hero {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

/* Background Carousel - Full Cover */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay - Dimmed Lighting Effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Centered Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 580px;
    padding: var(--spacing-lg);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--green-soft);
    color: var(--green-primary);
    border: 1px solid var(--green-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
}

/* Hero Subtitle */
.hero-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--yellow-accent);
    margin-bottom: var(--spacing-sm);
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    background: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
    box-shadow: 0 4px 16px rgba(50, 126, 9, 0.3);
}

.btn-hero-primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--green-glow);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border: 2px solid var(--gray-border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-subtle);
}

.btn-hero-secondary:hover {
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        max-width: 90%;
        padding: var(--spacing-xl);
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   INTERNATIONAL PHONE INPUT STYLING
   =================================== */

/* Phone input container */
.iti {
    width: 100%;
    display: block;
}

/* Selected flag button */
.iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 12px 0 8px;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Country dropdown list */
.iti__country-list {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-height: 200px;
    border-radius: 8px;
    margin-top: 4px;
}

/* Individual country item */
.iti__country {
    padding: 10px 12px;
    color: var(--text-primary);
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Country name and dial code */
.iti__country-name {
    color: var(--text-primary);
}

.iti__dial-code {
    color: var(--text-secondary);
}

/* Divider between countries */
.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Phone input field itself */
.iti__tel-input {
    width: 100%;
    padding: var(--spacing-md);
    padding-left: 52px;
    /* Make room for flag */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-subtle);
}

.iti__tel-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-green);
    outline: none;
}

.iti__tel-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Arrow icon for dropdown */
.iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-secondary);
}

/* Search input in country list */
.iti__search-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    padding: 8px 12px;
    margin: 8px;
    width: calc(100% - 16px);
}

.iti__search-input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    outline: none;
}

.iti__search-input::placeholder {
    color: var(--text-secondary);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .iti__country-list {
        max-height: 180px;
    }

    .iti__tel-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* ===================================
   MOBILE RESPONSIVE - 480px and below
   =================================== */
@media (max-width: 480px) {

    /* Base containers */
    .container,
    .container-narrow {
        padding: 0 var(--spacing-sm);
    }

    /* Navbar */
    .nav-reserve-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    /* Hero */
    .hero-content {
        padding: var(--spacing-md);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Preview sections */
    .preview-title {
        font-size: 1.8rem;
    }

    .preview-text {
        font-size: 1.05rem;
    }

    .preview-cta,
    .preview-cta-light {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    /* Gallery preview */
    .preview-gallery {
        min-height: 400px;
    }

    .preview-overlay {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    /* Reserve preview */
    .preview-reserve {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .preview-title-large {
        font-size: 2rem;
    }

    .preview-text-large {
        font-size: 1.1rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-secondary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .preview-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .preview-cta-group .btn-primary-large,
    .preview-cta-group .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }

    /* Highlight tags */
    .highlight-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }

    /* Reserve form */
    .reservation-form {
        padding: 0 var(--spacing-xs);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    /* Contact section */
    .contact-title {
        font-size: 1.4rem;
    }

    .contact-address {
        font-size: 1rem;
    }

    .contact-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-directions,
    .btn-call {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
    }

    .location-map iframe {
        height: 300px;
    }

    /* Footer */
    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    /* Page hero */
    .page-hero {
        min-height: 35vh;
        padding-top: calc(76px + var(--spacing-lg));
        padding-bottom: var(--spacing-lg);
        background-attachment: scroll;
    }

    .page-title {
        font-size: 2rem;
    }

    /* Experience blocks (What's On page) */
    .experience-block {
        padding: var(--spacing-lg);
    }

    .experience-title {
        font-size: 1.5rem;
    }

    .experience-description {
        font-size: 1rem;
    }

    /* Directions box */
    .directions-box {
        padding: var(--spacing-lg);
    }

    .directions-title {
        font-size: 1.2rem;
    }

    /* CTA containers */
    .cta-container {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Section spacing */
    section {
        padding: var(--spacing-xl) 0;
    }

    .section-zone {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }

    /* Menu links in overlay */
    .menu-link {
        font-size: 1.3rem;
    }

    /* Gallery carousel */
    .gallery-carousel {
        aspect-ratio: 4/3;
        border-radius: 4px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-btn.prev {
        left: var(--spacing-xs);
    }

    .carousel-btn.next {
        right: var(--spacing-xs);
    }

    .gallery-caption {
        font-size: 0.9rem;
        padding: var(--spacing-sm);
    }

    /* What's On - final CTA */
    .final-cta-section {
        padding: var(--spacing-2xl) 0;
    }

    /* Location grid on venue page */
    .location-grid {
        gap: var(--spacing-md);
    }

    .location-info {
        padding: var(--spacing-md) 0;
    }

    /* Reserve page */
    .reserve-page {
        padding-top: calc(76px + var(--spacing-lg));
    }

    /* Ridehail info box */
    .contact-ridehail,
    .directions-ridehail {
        font-size: 0.85rem;
        padding: var(--spacing-sm);
    }
}

/* ===================================
   TABLET RESPONSIVE - 481px to 768px
   =================================== */
@media (min-width: 481px) and (max-width: 768px) {

    .container,
    .container-narrow {
        padding: 0 var(--spacing-md);
    }

    /* Hero */
    .hero-content {
        padding: var(--spacing-lg);
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2.2rem;
        font-size: 1rem;
    }

    /* Preview sections */
    .preview-container .preview-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .preview-gallery {
        min-height: 450px;
    }

    /* Reserve preview */
    .preview-reserve {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .preview-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .preview-cta-group .btn-primary-large,
    .preview-cta-group .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 1.1rem 2.5rem;
        font-size: 1.05rem;
    }

    /* Contact section */
    .contact-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-directions,
    .btn-call {
        width: 100%;
        justify-content: center;
    }

    .location-map iframe {
        height: 350px;
    }

    /* Fix parallax on mobile */
    .page-hero {
        background-attachment: scroll;
    }

    /* Experience blocks */
    .experience-block {
        padding: var(--spacing-lg);
    }

    /* Gallery carousel */
    .gallery-carousel {
        aspect-ratio: 16/10;
    }

    /* Final CTA section */
    .final-cta-section {
        padding: var(--spacing-2xl) 0;
    }

    /* CTA buttons */
    .cta-container {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Reserve page */
    .reserve-page {
        padding-top: calc(76px + var(--spacing-xl));
    }
}

/* ===================================
   ACTIVITY CARDS - WHATS ON PAGE
   =================================== */
.activity-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.activity-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-soft);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.activity-card:hover {
    border-color: var(--green-primary);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.3s ease;
}

.activity-header:hover {
    background: var(--green-soft);
}

.activity-header.active {
    background: var(--green-soft);
}

.activity-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-icon .lucide {
    width: 22px;
    height: 22px;
    color: var(--green-primary);
}

.activity-name {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 700;
}

.activity-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.activity-header.active .activity-arrow {
    transform: rotate(180deg);
    color: var(--green-primary);
}

.activity-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.activity-details.open {
    max-height: 400px;
}

.schedule-list {
    list-style: none;
    padding: 0 1.5rem 1.25rem;
    margin: 0;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-border);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .day {
    color: var(--yellow-accent);
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 100px;
}

.schedule-list .event-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: right;
}

/* ===================================
   UPCOMING EVENTS SECTION
   =================================== */
.upcoming-events-section {
    background: var(--bg-dark);
    padding: var(--spacing-2xl) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-soft);
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: var(--green-primary);
}

.event-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--yellow-soft);
    color: var(--yellow-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.event-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.events-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.events-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.events-empty p {
    font-size: 1.1rem;
}

/* ===================================
   SOCIAL MEDIA LINKS
   =================================== */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-soft);
    border: 1px solid var(--gray-border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--green-soft);
    border-color: var(--green-primary);
    color: var(--green-primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    color: #25D366;
}

.connect-section {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.connect-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.connect-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.whatsapp-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-join-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.whatsapp-join-btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   GALLERY VIDEO SLIDES
   =================================== */
.gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-soft);
}

.gallery-grid-section {
    padding: var(--spacing-2xl) 0;
}

.gallery-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-media-item {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    cursor: pointer;
}

.gallery-media-item img,
.gallery-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-media-item:hover img,
.gallery-media-item:hover video {
    transform: scale(1.05);
}

.gallery-media-item .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-media-item:hover .play-overlay {
    opacity: 0.8;
}

.play-overlay svg {
    width: 48px;
    height: 48px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Gallery video modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.active {
    display: flex;
}

.video-modal video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-soft);
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .gallery-media-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .schedule-list .day {
        min-width: 80px;
        font-size: 0.85rem;
    }

    .schedule-list .event-name {
        font-size: 0.85rem;
    }

    .activity-header {
        padding: 1rem 1.25rem;
    }

    .activity-name {
        font-size: 1.05rem;
    }
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */
.toast-container {
    position: fixed;
    top: 90px;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 380px;
    width: 100%;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-soft);
    background: var(--bg-elevated);
    border: 1px solid var(--gray-border);
    color: var(--text-primary);
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast-message {
    flex: 1;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast.toast-success {
    border-left: 4px solid var(--green-primary);
}

.toast.toast-error {
    border-left: 4px solid #e74c3c;
}

.toast.toast-info {
    border-left: 4px solid var(--yellow-accent);
}

.toast.toast-success .toast-icon { color: var(--green-primary); }
.toast.toast-error .toast-icon { color: #e74c3c; }
.toast.toast-info .toast-icon { color: var(--yellow-accent); }

/* ===================================
   ADMIN PAGE STYLES
   =================================== */
.admin-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Admin Login */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--spacing-md);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-elevated);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-soft);
    padding: var(--spacing-2xl);
    text-align: center;
}

.login-card .login-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 50%;
}

.login-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 0.5rem;
}

.login-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xl);
}

.login-card .form-group {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.login-card input[type="email"],
.login-card input[type="password"] {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-subtle);
}

.login-card input[type="email"]:focus,
.login-card input[type="password"]:focus {
    outline: none;
    border-color: var(--green-primary);
    background: rgba(255, 255, 255, 0.08);
}

.login-card .btn-submit {
    margin-top: var(--spacing-md);
}

/* Admin Header */
.admin-header {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--gray-border);
    padding: 1rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header-left img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.admin-header-left h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow-accent);
}

.admin-header-left span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-logout {
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid var(--gray-border);
    color: var(--text-secondary);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-logout:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-border);
    background: var(--bg-dark);
    overflow-x: auto;
}

.admin-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.admin-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.admin-tab.active {
    color: var(--yellow-accent);
    border-bottom-color: var(--yellow-accent);
}

/* Admin Container */
.admin-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.admin-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

/* Admin Form */
.admin-form .form-group {
    margin-bottom: var(--spacing-lg);
}

.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.admin-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-subtle);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D5DBD8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.admin-form select:focus {
    outline: none;
    border-color: var(--green-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.admin-form select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.admin-form input[type="text"],
.admin-form input[type="date"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-subtle);
}

.admin-form input[type="text"]:focus,
.admin-form input[type="date"]:focus,
.admin-form input[type="email"]:focus,
.admin-form input[type="password"]:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Featured Toggle */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--green-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
    background: #fff;
}

.toggle-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Image Upload Drop Zone */
.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-soft);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--green-primary);
    background: var(--green-soft);
}

.upload-zone-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.upload-zone-text strong {
    color: var(--green-primary);
}

.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-preview {
    margin-top: 1rem;
    display: none;
}

.image-preview.show {
    display: block;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-soft);
    object-fit: cover;
}

.image-preview .remove-image {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-preview .remove-image:hover {
    background: rgba(231, 76, 60, 0.3);
}

/* Admin Event Cards List */
.admin-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-event-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-soft);
    transition: border-color 0.3s ease;
}

.admin-event-card:hover {
    border-color: var(--green-primary);
}

.admin-event-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-elevated);
}

.admin-event-info {
    flex: 1;
    min-width: 0;
}

.admin-event-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-event-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-event-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.category-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--green-soft);
    color: var(--green-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-delete {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: var(--font-primary);
}

.btn-delete:hover {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.admin-events-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Delete Confirmation Modal */
.delete-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.delete-modal-overlay.show {
    display: flex;
}

.delete-modal {
    background: var(--bg-elevated);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-soft);
    padding: var(--spacing-xl);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.delete-modal h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.delete-modal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

.delete-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cancel {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gray-border);
    color: var(--text-secondary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-cancel:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-confirm-delete {
    padding: 0.7rem 1.5rem;
    background: #e74c3c;
    border: none;
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-confirm-delete:hover {
    background: #c0392b;
}

/* Settings Form */
.settings-form {
    max-width: 500px;
}

.settings-form .form-group {
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   ENHANCED PUBLIC EVENT CARDS
   =================================== */
.event-card-enhanced {
    background: var(--bg-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-soft);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.event-card-enhanced:hover {
    transform: translateY(-4px);
    border-color: var(--green-primary);
}

.event-card-enhanced.featured {
    border-color: var(--yellow-accent);
    box-shadow: 0 0 20px rgba(253, 239, 88, 0.1);
}

.event-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.event-card-body {
    padding: 1.25rem;
}

.event-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.event-card-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--yellow-soft);
    color: var(--yellow-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.event-card-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--green-soft);
    color: var(--green-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-border);
}

.event-card-time {
    font-size: 0.85rem;
    color: var(--yellow-accent);
    font-weight: 600;
}

.event-card-venue {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.event-card-fee {
    font-size: 0.85rem;
    color: var(--green-primary);
    font-weight: 600;
}

.featured-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--yellow-soft);
    color: var(--yellow-accent);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===================================
   LOADING SPINNER
   =================================== */
.events-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--green-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.events-loading p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===================================
   ADMIN MOBILE RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .admin-header {
        padding: 0.75rem var(--spacing-sm);
    }

    .admin-header-left h1 {
        font-size: 0.95rem;
    }

    .admin-header-left span {
        display: none;
    }

    .admin-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-tab {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
        min-width: 0;
    }

    .admin-container {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .admin-form .form-row {
        grid-template-columns: 1fr;
    }

    .admin-event-card {
        flex-wrap: wrap;
    }

    .admin-event-thumb {
        width: 60px;
        height: 60px;
    }

    .admin-event-info h3 {
        font-size: 0.9rem;
    }

    .delete-modal-actions {
        flex-direction: column;
    }

    .delete-modal-actions .btn-cancel,
    .delete-modal-actions .btn-confirm-delete {
        width: 100%;
    }

    .toast-container {
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }

    .login-card {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .admin-event-card {
        padding: 0.75rem;
    }

    .admin-event-thumb {
        width: 50px;
        height: 50px;
    }

    .btn-delete {
        width: 100%;
        text-align: center;
    }
}