/* Import Bebas Neue Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FFF8E7;
    --deep-cream: #F5E6D3;
    --green: #2D5016;
    --dark-green: #1a2e0a;
    --accent-gold: #D4AF37;
    --text-dark: #2c2c2c;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.38);
    --r: 22px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0f05;
    color: white;
    overflow-x: hidden;
}

/* Tesla-inspired Minimal Hero */
.cyber-hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0f05 0%, #1a2e0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cyber-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-core {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== GLASS STAGE ===== */
.glass-stage {
    position: relative;
    padding: 84px 20px;
    background: radial-gradient(1200px 800px at 20% -10%, #151a20 0, transparent 55%),
                radial-gradient(1000px 700px at 120% 140%, #0d1216 0, transparent 60%),
                linear-gradient(#0e1114, #0e1114);
    color: #e8edf2;
    text-align: center;
}

.glass-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 12px, rgba(255,255,255,0) 12px 24px);
    opacity: .35;
}

.glass-stage .wrap {
    max-width: 1200px;
    margin: auto;
}

/* ===== GLASS CARDS ===== */
.glass-card {
    position: relative;
    border-radius: var(--r);
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    box-shadow: 0 28px 80px rgba(0,0,0,.35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 28%);
    opacity: .55;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 120px rgba(0,0,0,.45);
    border-color: rgba(212,175,55,.7);
}

.glass-card h3 {
    margin: 6px 0 8px;
    font-size: 1.15rem;
    color: #f6f2e6;
    letter-spacing: -.01em;
}

.glass-card p {
    color: #c9d1d9;
    font-size: 0.9rem;
}

.eyebrow {
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .78rem;
    color: #a7b3bf;
}

.section-title {
    font-size: clamp(30px, 4.2vw, 44px);
    letter-spacing: -.02em;
    color: #f6f2e6;
    margin: .35em 0;
}

.section-sub {
    color: #b6c0c9;
    max-width: 66ch;
    margin: 0 auto;
}

/* Card Icons */
.card-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

/* Acoustic Engineering - 4 Square Cards */
.acoustic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 2rem auto;
}

.square-glass-card {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

/* Table Reservation Carousel */
.reservation-carousel {
    max-width: 320px;
    margin: 2rem auto;
    position: relative;
}

.carousel-track {
    position: relative;
    height: 320px;
}

.reservation-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.reservation-card.active {
    opacity: 1;
    transform: translateX(0);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Operating Hours Marquee */
.marquee-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-green) 100%);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.hours-marquee-container {
    display: flex;
    gap: 16px;
    animation: hoursMarquee 25s linear infinite;
    width: max-content;
    margin-top: 2rem;
}

@keyframes hoursMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 16px)); }
}

.hours-glass-card {
    min-width: 160px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
}

.day-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.day-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #f6f2e6;
}

.day-time {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.day-special {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Regular Sections */
.regular-section {
    padding: 6rem 2rem;
    background: var(--cream);
    color: var(--text-dark);
    text-align: center;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.standard-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .acoustic-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .glass-stage,
    .regular-section,
    .marquee-section {
        padding: 4rem 1.5rem;
    }

    .carousel-track {
        height: 280px;
    }

    .reservation-carousel {
        max-width: 280px;
    }

    .hours-marquee-container {
        animation-duration: 35s;
    }
}
/* Reduce hero background space */
.cyber-hero {
    height: 60vh; /* Reduced from 100vh */
    min-height: 400px; /* Prevent it from getting too small */
}

/* Optional: If you want the content to stay centered properly */
.hero-core {
    padding: 2rem 0; /* Add some padding to keep content centered */
}
/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make sure hero content stays above video */
.hero-core {
    position: relative;
    z-index: 2;
}

/* Optional: Add overlay for better text readability */
.cyber-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 5, 0.4); /* Dark overlay */
    z-index: 1;
}
/* Add fade overlay to video */
.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}
.hero-subtitle {
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Bebas Neue', sans-serif; /* Add this line */
}
.hero-core {
    margin-top: 120px; /* Adjust this value as needed */
}
.square-glass-card {
    padding: 1.5rem; /* Reduce from 1.5rem */
}
.acoustic-grid {
    max-width: 200bpx; /* Reduce from 800px */
}
.regular-section .eyebrow {
    color: var(--text-dark);
}
.regular-section .section-sub {
    color: var(--text-dark) !important;
}
/* Increase card height */
.reservation-card {
    height: 380px; /* Increase from current height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Move the dots down */
.carousel-nav {
    margin-top: 3rem; /* Increase space above dots */
}

/* Increase section space */
.glass-stage {
    padding: 100px 20px; /* Increase padding for more space */
}
.reservation-card {
    text-align: center;
}

.reservation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reservation-card p:first-of-type {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.reservation-card p:last-of-type {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}
.carousel-track {
    height: auto !important; /* Remove fixed height */
    min-height: 320px; /* Set minimum height instead */
}

.carousel-nav {
    margin-top: 3rem !important; /* Force it down */
    position: static !important; /* Remove any positioning */
    transform: none !important;
}
.carousel-nav {
    margin-top: 5rem !important; /* Increase from 3rem to 5rem */
}

/* Left align all section headers on Club page */
.section-header {
  text-align: left !important;
}

/* Left-align all section headers ONLY on the Club page */
.wrap .eyebrow,
.wrap .section-title,
.wrap .section-sub {
    text-align: left !important;
}
