/* Stylesheet for Stadium Club | Premium Bar & Pool Hall */

:root {
    --bg-dark: #070a0f; /* Deep obsidian navy */
    --bg-card: #0e131b; /* Sleek card background */
    --text-primary: #f0f2f5;
    --text-muted: #9fa6b2;
    
    /* Accents */
    --accent-blue: #007cff; /* Tournament felt blue */
    --accent-blue-glow: rgba(0, 124, 255, 0.4);
    --accent-amber: #e5971a; /* Cocktail amber */
    --accent-amber-glow: rgba(229, 151, 26, 0.4);
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(7, 10, 15, 0.95);
    padding: 0.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-amber);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--accent-amber);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(7, 10, 15, 0.3) 0%, rgba(7, 10, 15, 0.95) 90%), url('hero_bg.png') no-repeat center center/cover;
    padding-top: 80px;
}

.hero-content {
    max-width: 750px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-amber), #b7740e);
    color: #000000;
    border: none;
    box-shadow: 0 4px 20px var(--accent-amber-glow);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 151, 26, 0.6);
    background: linear-gradient(135deg, #ffae2b, var(--accent-amber));
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.cta-button.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    background: transparent;
    border: 1px solid var(--accent-amber);
    color: var(--accent-amber);
}

.cta-button.nav-cta:hover {
    background: var(--accent-amber);
    color: #000000;
    box-shadow: 0 4px 15px var(--accent-amber-glow);
    transform: translateY(-1px);
}

/* Split-Focus Feature */
.split-feature {
    display: flex;
    height: 60vh;
    min-height: 450px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-left, .split-right {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.split-left {
    background: linear-gradient(to right, rgba(7, 10, 15, 0.95), rgba(7, 10, 15, 0.4)), url('billiards.png') no-repeat center center/cover;
}

.split-right {
    background: linear-gradient(to left, rgba(7, 10, 15, 0.95), rgba(7, 10, 15, 0.4)), url('cocktails.png') no-repeat center center/cover;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.split-left::before, .split-right::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.split-left::before {
    background: radial-gradient(circle, transparent 20%, var(--accent-blue) 150%);
}

.split-right::before {
    background: radial-gradient(circle, transparent 20%, var(--accent-amber) 150%);
}

.split-left:hover {
    flex: 1.25;
}

.split-right:hover {
    flex: 1.25;
}

.split-left:hover::before {
    opacity: 0.7;
}

.split-right:hover::before {
    opacity: 0.7;
}

.feature-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 400px;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.split-left:hover .feature-text {
    transform: scale(1.05);
}

.split-right:hover .feature-text {
    transform: scale(1.05);
}

.feature-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.split-left h2 {
    color: #ffffff;
    text-shadow: 0 0 20px var(--accent-blue-glow);
}

.split-right h2 {
    color: #ffffff;
    text-shadow: 0 0 20px var(--accent-amber-glow);
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
    padding: 8rem 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(0, 124, 255, 0.03) 0%, transparent 40%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 3rem;
}

.stat-item {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.stat-item span {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Details Section */
.details-section {
    padding: 4rem 0 8rem 0;
    background: radial-gradient(circle at 90% 80%, rgba(229, 151, 26, 0.03) 0%, transparent 40%);
}

.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.detail-block:last-child {
    margin-bottom: 0;
}

.detail-block.reversed .detail-image {
    order: 0;
}
.detail-block.reversed .detail-text {
    order: 1;
}

.detail-block .detail-text {
    padding: 2rem 0;
}

.detail-image {
    height: 480px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.pool-table-image {
    background: linear-gradient(to bottom, rgba(7, 10, 15, 0.1), rgba(7, 10, 15, 0.6)), url('billiards.png') no-repeat center center/cover;
}

.bar-image {
    background: linear-gradient(to bottom, rgba(7, 10, 15, 0.1), rgba(7, 10, 15, 0.6)), url('cocktails.png') no-repeat center center/cover;
}

.detail-image:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.detail-text h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.detail-block.reversed h3 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 124, 255, 0.2);
}

.detail-block:not(.reversed) h3 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(229, 151, 26, 0.2);
}

.detail-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.text-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.detail-block.reversed .text-link {
    color: var(--accent-blue);
}

.detail-block.reversed .text-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.detail-block:not(.reversed) .text-link {
    color: var(--accent-amber);
}

.detail-block:not(.reversed) .text-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Private Events */
.private-events {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(7, 10, 15, 0) 0%, rgba(14, 19, 27, 0.7) 100%), url('hero_bg.png') no-repeat center center/cover;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.events-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(14, 19, 27, 0.85);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.private-events h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.private-events p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Footer Section */
footer {
    background-color: #04060a;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-grid h4 {
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-grid p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-social a, .footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-social a:hover, .footer-bottom a:hover {
    color: var(--accent-amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 300;
}

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

/* ==========================================================================
   Tables Page Styles
   ========================================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0 6rem 0;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 124, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 124, 255, 0.1);
}

.fleet-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.fleet-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.fleet-card li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-card li::before {
    content: '◈';
    color: var(--accent-amber);
    font-size: 0.8rem;
}

/* Dual Container Layout (Leagues & Instruction) */
.dual-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    margin: 6rem 0;
    align-items: start;
}

.dual-left, .dual-right {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dual-left h2, .dual-right h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

/* Tables for schedules */
.league-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.league-table th, .league-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.league-table th {
    font-family: var(--font-heading);
    color: var(--accent-amber);
    font-weight: 600;
    letter-spacing: 1px;
}

.league-table td {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pro-profile {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.pro-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 0 15px var(--accent-amber-glow);
}

.pro-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #ffffff;
}

.pro-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Conversion Banner */
.conversion-banner {
    background: linear-gradient(135deg, #181308 0%, #0d0a04 100%);
    border: 1px solid var(--accent-amber);
    border-radius: 8px;
    padding: 5rem;
    text-align: center;
    margin: 6rem 0;
    box-shadow: 0 20px 40px var(--accent-amber-glow);
}

.conversion-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.conversion-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Events Page Styles
   ========================================================================== */
.events-hero-video {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(7, 10, 15, 0.4), rgba(7, 10, 15, 0.95)), url('events_hero.png') no-repeat center center/cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0 6rem 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-amber);
    box-shadow: 0 15px 40px var(--accent-amber-glow);
}

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

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-amber);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-amber);
    margin: 1.5rem 0;
    font-weight: 700;
}

.pricing-price span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-amber);
    font-weight: bold;
}

/* Contact / Lead Capture Form */
.form-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(14, 19, 27, 0.4) 0%, transparent 80%);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

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

.form-group input, .form-group select, .form-group textarea {
    background: #070a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber-glow);
}

.trust-banner {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-banner strong {
    color: var(--accent-amber);
}

/* ==========================================================================
   Location Page Styles
   ========================================================================== */
.map-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0 6rem 0;
    align-items: stretch;
}

.authority-block {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-block p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-info-block a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.hours-card {
    background: rgba(229, 151, 26, 0.02);
    border: 1px solid rgba(229, 151, 26, 0.15);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.hours-table td.day {
    font-weight: 600;
    color: #ffffff;
}

.hours-table td.time {
    text-align: right;
    color: #cbb48e; /* Dimmed gold tint for times */
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(229, 151, 26, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 151, 26, 0.05);
    min-height: 450px;
}

/* Custom dark skin overlay for standard Google Map */
.dark-map {
    filter: invert(90%) hue-rotate(180deg) grayscale(100%) contrast(90%);
    width: 100%;
    height: 100%;
    border: none;
}

.proximity-details {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proximity-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.proximity-grid h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.proximity-grid p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.callout-box {
    background: rgba(0, 124, 255, 0.05);
    border-left: 4px solid var(--accent-blue);
    padding: 2.5rem;
    border-radius: 0 8px 8px 0;
}

.callout-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

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

/* ==========================================================================
   Reservation Page Styles
   ========================================================================== */
.booking-section {
    padding: 4rem 0 8rem 0;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.booking-widget-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.booking-widget-container h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.booking-flow-step {
    margin-bottom: 2rem;
}

.booking-flow-step label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.time-slot-pill {
    background: #070a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.75rem;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.time-slot-pill:hover, .time-slot-pill.active {
    border-color: var(--accent-amber);
    color: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber-glow);
}

.booking-sidebar {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.booking-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.checklist li::before {
    content: '◈';
    color: var(--accent-blue);
    font-weight: bold;
}

.faq-section {
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.accordion-item summary {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--accent-amber);
    transition: var(--transition-smooth);
}

.accordion-item[open] summary::after {
    content: '−';
    transform: rotate(90deg);
}

.accordion-content {
    padding: 0 0 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sticky-call-banner {
    margin-top: 4rem;
    background: rgba(229, 151, 26, 0.05);
    border: 1px dashed var(--accent-amber);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sticky-call-banner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.sticky-call-banner strong {
    color: var(--accent-amber);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .detail-block {
        gap: 3rem;
    }
    
    .detail-image {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .dual-container, .map-split-container, .booking-layout, .proximity-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    header .container {
        height: 70px;
    }
    
    nav, .nav-cta {
        display: none; /* Mobile menu hidden for simplicity, toggleable in full builds */
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .split-feature {
        flex-direction: column;
        height: auto;
    }
    
    .split-left, .split-right {
        height: 300px;
        padding: 2rem;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        padding-top: 2rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .details-section {
        padding: 2rem 0 5rem 0;
    }
    
    .detail-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }
    
    .detail-block.reversed .detail-image {
        order: 1;
    }
    
    .detail-image {
        height: 300px;
    }
    
    .private-events {
        padding: 6rem 0;
    }
    
    .events-content {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        text-align: center;
        width: 100%;
    }
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Mobile Sidebar Drawer */
.mobile-menu-drawer {
    display: none; /* Hide by default on desktop to guard against glitches */
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(14, 19, 27, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(229, 151, 26, 0.15);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    padding: 100px 40px 40px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu-drawer.open {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 25px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.25rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.close-drawer:hover {
    color: var(--accent-amber);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--accent-amber);
    padding-left: 5px;
}

.mobile-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Responsiveness Media Updates */
@media (max-width: 1200px) {
    header nav,
    header .cta-button.nav-cta {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu-drawer {
        display: flex !important;
    }
}

/* Z-Pattern Space Rows */
.space-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}
.space-row:last-child {
    margin-bottom: 0;
}
.space-row.reversed {
    flex-direction: row-reverse;
}
.space-row-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(229, 151, 26, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.space-row-content {
    flex: 1;
}
.space-row-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
}
.capacity-badge {
    display: inline-block;
    background: rgba(0, 124, 255, 0.05);
    border: 1px solid rgba(0, 124, 255, 0.3);
    color: var(--accent-blue);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.space-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}
.space-features li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}
.space-features li::before {
    content: '◈';
    color: var(--accent-amber);
    font-weight: bold;
}

/* Packages Tab Switcher */
.switcher-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}
.switcher-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}
.switcher-btn.active, .switcher-btn:hover {
    border-color: var(--accent-amber);
    color: var(--accent-amber);
    box-shadow: 0 0 15px var(--accent-amber-glow);
}
.package-tab-content {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.package-tab-content.active {
    display: grid;
}

/* Event Showcase Past Events */
.showcase-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.showcase-card {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    background-size: cover;
    background-position: center;
}
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 10, 15, 0.9) 20%, rgba(7, 10, 15, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}
.showcase-card:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(7, 10, 15, 0.95) 40%, rgba(7, 10, 15, 0.2) 100%);
}
.showcase-info h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.showcase-info p {
    color: var(--accent-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* High Contrast CTA bar */
.direct-call-bar {
    background: rgba(229,151,26,0.05);
    border: 1px dashed var(--accent-amber);
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    max-width: 800px;
    margin: 40px auto 0 auto;
    font-size: 1.05rem;
    color: var(--text-primary);
}
.direct-call-bar a {
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: bold;
}
.direct-call-bar a:hover {
    text-shadow: 0 0 10px var(--accent-amber-glow);
}

/* Dynamic Event Modal */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10005;
    display: none;
    align-items: center;
    justify-content: center;
}
.event-modal.open {
    display: flex;
}
.event-modal-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(229, 151, 26, 0.2);
    padding: 50px;
    border-radius: 8px;
    width: 550px;
    max-width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
}
.event-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.event-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.event-form-grid label {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: -10px;
}
.event-form-grid input, .event-form-grid select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    border-radius: 4px;
}
.event-form-grid input:focus, .event-form-grid select:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber-glow);
}
.event-form-grid .full {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .space-row {
        flex-direction: column !important;
        gap: 30px;
    }
    .space-row-image {
        width: 100%;
        height: 250px;
    }
    .switcher-container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Dynamic Menu Upgrades */
.menu-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 60px 0; /* Expanded spacing */
}
.menu-filter-btn {
    background: transparent;
    border: 1px solid rgba(229,151,26,0.3); /* Subtle gold border outline */
    color: var(--text-muted);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.menu-filter-btn.active, .menu-filter-btn:hover {
    background: var(--accent-amber);
    color: #000000;
    border-color: var(--accent-amber);
    box-shadow: 0 4px 15px var(--accent-amber-glow);
}

/* Category grid and wrapper */
.menu-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Menu Item Card */
.menu-item-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.menu-item-card:hover {
    border-color: rgba(229,151,26,0.15);
    transform: translateY(-3px);
}
.menu-item-card-image {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.menu-item-card-info {
    flex-grow: 1;
}
.menu-item-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically centered */
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.menu-item-card-title {
    font-family: var(--font-heading); /* Serif Cinzel header */
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase; /* Uppercase */
    letter-spacing: 1px;
}
.menu-item-card-price {
    font-family: var(--font-heading);
    color: var(--accent-amber);
    font-weight: 700;
    font-size: 1.15rem;
}
.menu-item-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 6px;
    font-weight: 300;
}

/* Item Badges (Outline Pills) */
.menu-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.menu-badge.local-craft {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
}
.menu-badge.staff-pick {
    background: transparent;
    color: var(--accent-amber);
    border: 1px solid var(--accent-amber);
}
.menu-badge.zero-proof {
    background: transparent;
    color: #2ed573;
    border: 1px solid #2ed573;
}

/* Pairing recommendations container */
.pairing-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,151,26,0.03);
    border-left: 3px solid var(--accent-amber); /* Left accent bar */
    padding: 8px 15px;
    border-radius: 0 6px 6px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 300;
}
.pairing-bubble span {
    color: var(--accent-amber);
    font-weight: 600;
}

/* Sticky Tableside Ordering Bar */
.ordering-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(14, 19, 27, 0.96);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(229, 151, 26, 0.2);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ordering-bar.visible {
    transform: translateY(0);
}
.ordering-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ordering-bar-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.ordering-bar-text span {
    color: #ffffff;
    font-weight: 600;
}

/* Tableside Order Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10006;
    display: none;
    align-items: center;
    justify-content: center;
}
.order-modal.open {
    display: flex;
}
.order-modal-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(229, 151, 26, 0.2);
    padding: 40px;
    border-radius: 8px;
    width: 480px;
    max-width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
}
.order-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.order-form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.order-form-grid label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}
.order-form-grid input, .order-form-grid select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    border-radius: 4px;
}
.order-form-grid input:focus, .order-form-grid select:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber-glow);
}

/* Favorites Section styling */
.favorites-section {
    padding: 80px 0 0 0;
    background-color: var(--bg-dark);
}
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Enhancements for About Us & Menu Pages */
@media (max-width: 992px) {
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-box {
        height: 350px;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .featured-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-form-box {
        padding: 30px 20px;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .about-image-box {
        height: 250px;
    }
    .rules-container {
        padding: 30px 20px;
    }
    .menu-category-grid, .favorites-grid, .menu-list-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .featured-image {
        height: 250px;
    }
}

/* Responsive Table Wrappers */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
}
.table-responsive table {
    width: 100%;
    min-width: 500px;
}

/* Shop Cart Drawer & Form Responsiveness */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100% !important;
        right: -100% !important;
        padding: 20px !important;
    }
    .cart-drawer.open {
        right: 0 !important;
    }
    .checkout-form-grid {
        grid-template-columns: 1fr !important;
    }
}
