/* Chill Out Bar Bangkok - Main Design System Stylesheet */

/* ==========================================================================
   1. VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-base: #08080a;
    --color-bg-section: #0e0e12;
    --color-bg-card: #15151b;
    --color-bg-card-hover: #1e1e26;
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    /* Brand Accents */
    --color-accent-gold: #d9a74a;
    --color-accent-gold-rgb: 217, 167, 74;
    --color-accent-gold-dark: #b8862b;
    --color-accent-gold-glow: rgba(217, 167, 74, 0.4);
    
    /* Billiard/Pool Theme Colors */
    --color-pool-green: #22c55e;
    --color-pool-green-rgb: 34, 197, 94;
    --color-pool-green-glow: rgba(34, 197, 94, 0.4);
    --color-pool-felt: #0f766e;
    
    /* UI Helper Colors */
    --color-line-green: #06c755;
    --color-overlay-dark: rgba(8, 8, 10, 0.8);
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Borders & Glassmorphism */
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --border-glass-gold: 1px solid rgba(217, 167, 74, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

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

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

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
    background: #1f1f2a;
    border-radius: var(--border-radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold);
}

/* Ambient glow system */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(circle at 10% 20%, rgba(217, 167, 74, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.02) 0%, transparent 45%);
    transition: transform 0.1s ease-out;
}

/* Helper Classes */
.gold-text {
    color: var(--color-accent-gold);
}

.text-gold {
    color: var(--color-accent-gold) !important;
}

.green-text-glow {
    color: var(--color-pool-green);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(217, 167, 74, 0.1);
    color: var(--color-accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(217, 167, 74, 0.15);
    margin-bottom: 16px;
}

.section-badge.pool-green-text {
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-pool-green);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-desc {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.center-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-container {
        padding: 60px 20px;
    }
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent-gold);
    color: #000;
    box-shadow: 0 4px 20px var(--color-accent-gold-glow);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-line {
    background: var(--color-line-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05b04b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.45);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(8, 8, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background: rgba(8, 8, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    color: #fff;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    letter-spacing: 4px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover {
    color: #fff;
}

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

.nav-link.active {
    color: var(--color-accent-gold);
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background: var(--color-accent-gold);
    color: #000;
    border-color: var(--color-accent-gold);
    transform: translateY(-2px);
}

.social-icon-btn[aria-label="Line Account"]:hover {
    background: var(--color-line-green);
    color: #fff;
    border-color: var(--color-line-green);
}

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1100;
}

.hamburger .bar {
    height: 2px;
    width: 100%;
    background-color: var(--color-text-primary);
    border-radius: 10px;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #0b0b0f;
        border-left: var(--border-glass);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        z-index: 1050;
        transition: var(--transition-smooth);
        padding: 50px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hamburger Active Animations */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomOutHero 10s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomOutHero {
    to {
        transform: scale(1);
    }
}

.hero-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-accent-gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

.hero-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.05rem;
    }
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator mouse */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: var(--border-radius-pill);
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-accent-gold);
    border-radius: var(--border-radius-pill);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ==========================================================================
   6. STATS BANNER
   ========================================================================== */
.stats-banner {
    background: rgba(14, 14, 18, 0.95);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    .stat-divider {
        display: none;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.05);
}

.pool-glow {
    color: var(--color-pool-green);
    border-color: rgba(34, 197, 94, 0.15);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.05);
}
.stat-item:hover .pool-glow {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

.tv-glow {
    color: var(--color-accent-gold);
    border-color: rgba(217, 167, 74, 0.15);
    box-shadow: 0 0 15px rgba(217, 167, 74, 0.05);
}
.stat-item:hover .tv-glow {
    box-shadow: 0 0 20px rgba(217, 167, 74, 0.2);
    border-color: rgba(217, 167, 74, 0.4);
}

.location-glow {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}
.stat-item:hover .location-glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   7. ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--color-bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.about-p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

.highlight-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: var(--color-bg-card-hover);
    border-color: rgba(217, 167, 74, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 1.8rem;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
}

.highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-card p {
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Image Stack Styles */
.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
}

.image-card {
    position: absolute;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: inherit;
    pointer-events: none;
    transition: var(--transition-fast);
}

.main-img {
    width: 85%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.sub-img-1 {
    width: 60%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.image-stack:hover .main-img {
    transform: translate(-10px, -10px) rotate(-1deg);
}

.image-stack:hover .sub-img-1 {
    transform: translate(15px, 15px) rotate(1deg);
}

.image-stack:hover .glow-border {
    border-color: rgba(217, 167, 74, 0.3);
}

.floating-badge-award {
    position: absolute;
    bottom: 45%;
    left: -30px;
    z-index: 5;
    background: rgba(21, 21, 27, 0.85);
    backdrop-filter: blur(15px);
    border: var(--border-glass-gold);
    border-radius: var(--border-radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(217, 167, 74, 0.15);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge-award i {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
}

.floating-badge-award span {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   8. LIVE SPORTS SECTION
   ========================================================================== */
.sports-section {
    background-color: var(--color-bg-base);
    position: relative;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .sports-grid {
        grid-template-columns: 1fr;
    }
}

.sport-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent-gold);
    opacity: 0;
    transition: var(--transition-fast);
}

.sport-card:hover {
    background: var(--color-bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(217, 167, 74, 0.15);
}

.sport-card:hover::before {
    opacity: 1;
}

.sport-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    background: rgba(217, 167, 74, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.sport-card:hover .sport-icon-box {
    background: var(--color-accent-gold);
    color: #000;
}

.sport-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.sport-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sport-status {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent-gold);
    animation: redPulse 1.8s infinite;
}

@keyframes redPulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(217, 167, 74, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(217, 167, 74, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(217, 167, 74, 0);
    }
}

.sports-footer {
    margin-top: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-pill);
    padding: 16px 30px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .sports-footer {
        border-radius: var(--border-radius-md);
        width: 100%;
        padding: 20px;
    }
}

.sports-footer p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.sports-footer i {
    color: var(--color-accent-gold);
    margin-right: 8px;
}

/* ==========================================================================
   9. BILLIARDS / POOL SECTION
   ========================================================================== */
.billiards-section {
    background-color: var(--color-bg-section);
}

.billiards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .billiards-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.billiards-visual {
    display: flex;
    justify-content: center;
}

.pool-table-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: var(--border-glass);
}

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

.pool-table-frame:hover img {
    transform: scale(1.03);
}

.neon-canopy-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

/* Billiard Ball Interactive micro-animation */
.pool-interactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
}

.pool-ball {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #000;
    box-shadow: 
        inset -5px -5px 10px rgba(0,0,0,0.4),
        inset 5px 5px 8px rgba(255,255,255,0.4),
        0 6px 12px rgba(0,0,0,0.6);
    cursor: grab;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    user-select: none;
}

.pool-ball:active {
    cursor: grabbing;
}

.ball-1 {
    background: #000;
    color: #fff;
    top: 55%;
    left: 45%;
    box-shadow: 
        inset -5px -5px 10px rgba(0,0,0,0.8),
        inset 3px 3px 5px rgba(255,255,255,0.2),
        0 8px 16px rgba(0,0,0,0.7);
}

.ball-2 {
    background: #fbbf24;
    top: 62%;
    left: 30%;
}

.ball-3 {
    background: #ef4444;
    color: #fff;
    top: 48%;
    left: 58%;
}

/* Micro-interaction response on hover of frame */
.pool-table-frame:hover .ball-1 {
    transform: translate(25px, -15px) rotate(180deg);
}

.pool-table-frame:hover .ball-2 {
    transform: translate(-30px, 10px) rotate(-90deg);
}

.pool-table-frame:hover .ball-3 {
    transform: translate(15px, 20px) rotate(120deg);
}

.pool-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 35px;
}

.pool-feat-item {
    display: flex;
    gap: 20px;
}

.feat-bullet {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-pool-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pool-feat-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pool-feat-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   10. MENU SECTION
   ========================================================================== */
.menu-section {
    background-color: var(--color-bg-base);
}

/* Tabs */
.menu-tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

@media (max-width: 576px) {
    .menu-tabs-container {
        flex-direction: column;
        align-items: stretch;
    }
}

.menu-tab {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.menu-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255,255,255,0.15);
}

.menu-tab.active {
    background: var(--color-accent-gold);
    color: #000;
    border-color: var(--color-accent-gold);
    box-shadow: 0 5px 20px var(--color-accent-gold-glow);
}

/* Category Grid & Cards */
.menu-category-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-category-grid.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .menu-category-grid.active {
        grid-template-columns: 1fr;
    }
}

.menu-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    background: var(--color-bg-card-hover);
    border-color: rgba(217, 167, 74, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.menu-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.menu-price {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

.menu-desc {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Signature Card Highlight */
.menu-card.signature {
    border-color: rgba(217, 167, 74, 0.25);
    background: linear-gradient(135deg, #15151b 0%, #1e1b15 100%);
    box-shadow: 0 8px 30px rgba(217, 167, 74, 0.03);
}

.menu-card.signature:hover {
    border-color: var(--color-accent-gold);
    box-shadow: 0 15px 40px rgba(217, 167, 74, 0.1);
}

.menu-card-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--color-accent-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 4px 10px var(--color-accent-gold-glow);
}

.menu-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.meta-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.menu-card.signature .meta-tag {
    background: rgba(217, 167, 74, 0.05);
    border-color: rgba(217, 167, 74, 0.15);
    color: var(--color-accent-gold);
}

/* Download Section */
.menu-download-box {
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

@media (max-width: 768px) {
    .menu-download-box {
        flex-direction: column;
        text-align: center;
    }
}

.download-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    .download-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   11. EVENTS SECTION
   ========================================================================== */
.events-section {
    background-color: var(--color-bg-section);
}

.events-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 35px;
}

.events-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -47px;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-bg-section);
    border: 2px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--color-accent-gold);
    z-index: 2;
    box-shadow: 0 0 10px rgba(217, 167, 74, 0.2);
    transition: var(--transition-fast);
}

.timeline-marker.pool-marker {
    border-color: var(--color-pool-green);
    color: var(--color-pool-green);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.timeline-item:hover .timeline-marker {
    background: var(--color-accent-gold);
    color: #000;
    transform: scale(1.1);
}

.timeline-item:hover .timeline-marker.pool-marker {
    background: var(--color-pool-green);
    color: #000;
}

.timeline-content {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    background: var(--color-bg-card-hover);
    border-color: rgba(217, 167, 74, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.timeline-item:hover:has(.pool-marker) .timeline-content {
    border-color: rgba(34, 197, 94, 0.15);
}

.timeline-day {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 12px;
}

.timeline-item:has(.pool-marker) .timeline-day {
    color: var(--color-pool-green);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   12. CONTACT & DIRECTIONS SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-base);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 30px 20px;
    }
}

.contact-intro {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--color-accent-gold);
    color: #000;
    transform: scale(1.05);
}

.contact-detail-icon.line-green-text {
    color: var(--color-line-green);
}
.contact-detail-item:hover .contact-detail-icon.line-green-text {
    background: var(--color-line-green);
    color: #fff;
}

.contact-detail-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.contact-detail-text a {
    color: inherit;
}
.contact-detail-text a:hover {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .contact-actions {
        flex-direction: column;
    }
    .contact-actions .btn {
        width: 100%;
    }
}

/* Map frame & visual wrapper */
.map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: var(--border-glass);
    min-height: 450px;
    height: 100%;
}

@media (max-width: 992px) {
    .map-container {
        min-height: 350px;
    }
}

.map-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(8, 8, 10, 0.8);
    border: var(--border-glass-gold);
    border-radius: inherit;
    z-index: 5;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
    background-color: #050507;
    border-top: var(--border-glass);
    padding: 80px 0 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    margin: 20px 0 25px;
    max-width: 400px;
    line-height: 1.6;
}

.footer-logo {
    display: inline-flex;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.footer-social-btn:hover {
    background: var(--color-accent-gold);
    color: #000;
    border-color: var(--color-accent-gold);
    transform: translateY(-3px);
}

.footer-social-btn[aria-label="Line"]:hover {
    background: var(--color-line-green);
    color: #fff;
    border-color: var(--color-line-green);
}

.footer-nav h4,
.footer-highlights h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.footer-nav h4::after,
.footer-highlights h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-gold);
}

.footer-nav ul,
.footer-highlights ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
}

.footer-nav a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

.footer-highlights li {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-highlights i {
    width: 16px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: var(--border-glass);
    padding: 30px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.design-credit {
    font-weight: 600;
    color: var(--color-text-secondary);
}
