/* ============================================================
   Our Tavern — Main Stylesheet
   High-energy bar/venue aesthetic inspired by Howl at the Moon
   Bold typography, dark backgrounds, vivid accents, full-width
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Dark tavern palette — deep mahogany & amber warmth */
    --color-bg: #0c0907;
    --color-bg-raised: #100c09;
    --color-bg-alt: #130f0b;
    --color-bg-card: #1a1410;
    --color-bg-card-hover: #231c16;
    --color-text: #d9cfc5;
    --color-text-muted: #8c7f73;
    --color-heading: #fff8f0;
    --color-accent: #e8412e;
    --color-accent-hover: #ff5542;
    --color-accent-dark: #c4301f;
    --color-accent-secondary: #f5a623;
    --color-gold: #daa520;
    --color-border: #241c15;
    --color-border-light: #332a21;
    --color-success: #2ecc71;
    --color-error: #e74c3c;
    --color-link: #e8412e;
    /* Warm light pools — like pendant lights over a bar */
    --glow-amber: rgba(218, 165, 32, 0.07);
    --glow-warm: rgba(255, 180, 80, 0.05);
    --glow-red: rgba(232, 65, 46, 0.04);
    --section-divider: 1px solid rgba(218, 165, 32, 0.06);
    --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1280px;
    --radius: 6px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(218, 165, 32, 0.03) 0%, transparent 50%);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0;
}

.section-header-light h2,
.section-header-light .section-label {
    color: #ffffff;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 65, 46, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--color-bg);
}

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

.btn-secondary:hover {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-full { display: block; width: 100%; }
.btn-large { padding: 20px 50px; font-size: 1rem; }
.btn-small { padding: 10px 22px; font-size: 0.8rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: #000000;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.8rem;
}

.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-location {
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.top-bar-right a:hover {
    color: var(--color-accent);
}

/* ============================================================
   HERO LOGO
   ============================================================ */
.hero-logo {
    height: 160px;
    width: auto;
    display: block;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
    background: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--color-accent);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.nav-logo {
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
    margin: 0 auto;
}

.nav-links > li > a {
    color: #ffffff;
    padding: 28px 18px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s;
    display: block;
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--color-accent);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(232, 65, 46, 0.1);
}

.arrow {
    font-size: 0.65rem;
    margin-left: 4px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
    position: absolute;
    left: 8px;
}

.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Subtle grain texture for bar feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-bg.svg') center center / cover no-repeat;
    background-color: #0a0a0a;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(218, 165, 32, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(12, 9, 7, 0.25) 0%, rgba(12, 9, 7, 0.15) 40%, rgba(12, 9, 7, 0.55) 75%, rgba(12, 9, 7, 0.95) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.hero-accent {
    color: var(--color-accent);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 44px;
    font-style: italic;
    text-transform: none;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 50px; }
    50% { opacity: 0.3; height: 30px; }
}

/* Page Hero (subpages) */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-bg);
    z-index: 0;
}

.page-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.page-hero h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.page-hero .hero-tagline {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.page-hero .hero-subtitle {
    margin-bottom: 16px;
}

.page-hero .hero-tagline {
    margin-bottom: 0;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background: var(--color-accent);
    color: #ffffff;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.95rem;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-bar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
    background:
        radial-gradient(ellipse at 50% 0%, var(--glow-warm) 0%, transparent 50%),
        var(--color-bg-raised);
    border-top: var(--section-divider);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    position: relative;
}

.event-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 2px;
}

.event-card-body {
    padding: 24px;
}

.event-date {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 8px;
    display: block;
}

.event-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.event-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================================
   SHAPE DIVIDER
   ============================================================ */
.shape-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    color: var(--color-bg-alt);
}

.shape-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

/* ============================================================
   ABOUT / THE VIBE
   ============================================================ */
.about-section {
    background:
        radial-gradient(ellipse at 75% 20%, var(--glow-amber) 0%, transparent 45%),
        radial-gradient(ellipse at 25% 80%, var(--glow-warm) 0%, transparent 45%),
        var(--color-bg);
    border-top: var(--section-divider);
}

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

.about-grid-3col {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
}

.about-img-single {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    border-radius: var(--radius);
    border: 2px solid var(--color-border);
}

.about-image-stack {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 85%;
    background-size: cover;
    background-position: center;
    background-color: #222;
    border-radius: var(--radius);
    z-index: 1;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 55%;
    background-size: cover;
    background-position: center;
    background-color: #333;
    border-radius: var(--radius);
    border: 4px solid var(--color-accent);
    z-index: 2;
}

.about-text-col .section-label {
    text-align: left;
}

.about-text-col h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.about-text-col h2::after {
    display: none;
}

.about-lead {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-text-col p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-text-col .btn {
    margin-top: 16px;
}

/* ============================================================
   HOURS
   ============================================================ */
.hours-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 20%, var(--glow-amber) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 80%, var(--glow-warm) 0%, transparent 45%),
        var(--color-bg-raised);
    border-top: var(--section-divider);
    border-bottom: var(--section-divider);
}

.hours-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(10rem, 25vw, 20rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 30px;
    color: rgba(232, 65, 46, 0.03);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.hours-section .container {
    position: relative;
    z-index: 1;
}

.hours-tagline {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 10px auto 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-grid-7 {
    grid-template-columns: repeat(7, 1fr);
    max-width: 1300px;
}

.hours-card {
    background: var(--color-bg-card);
    padding: 36px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hours-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.hours-card-open {
    border-color: rgba(218, 165, 32, 0.15);
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.06), var(--color-bg-card));
}

.hours-card-open:hover {
    border-color: rgba(218, 165, 32, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 30px rgba(218, 165, 32, 0.04);
}

.hours-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.hours-time {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 700;
}

.hours-vibe {
    display: block;
    font-size: 0.78rem;
    color: var(--color-gold);
    margin-top: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 6px 12px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.2);
    line-height: 1.3;
}

.hours-note {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-style: italic;
    line-height: 1.3;
}

.hours-closed {
    opacity: 0.45;
}

.hours-closed .hours-time {
    color: var(--color-text-muted);
}

/* Hours Status Banner */
.hours-status-banner {
    text-align: center;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hours-status-banner.status-open {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.15), rgba(34, 139, 34, 0.05));
    border: 2px solid rgba(34, 139, 34, 0.4);
}

.hours-status-banner.status-closed {
    background: linear-gradient(135deg, rgba(232, 65, 46, 0.1), rgba(232, 65, 46, 0.03));
    border: 2px solid rgba(232, 65, 46, 0.3);
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.status-open .status-indicator {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6), 0 0 20px rgba(34, 197, 94, 0.3);
    animation: pulse-green 2s infinite;
}

.status-closed .status-indicator {
    background: var(--color-accent);
    box-shadow: 0 0 10px rgba(232, 65, 46, 0.4);
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.6), 0 0 20px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.8), 0 0 30px rgba(34, 197, 94, 0.5); }
}

.status-main {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.status-open .status-main {
    color: #22c55e;
}

.status-closed .status-main {
    color: var(--color-accent);
}

.status-sub {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    letter-spacing: 0;
}

.status-next {
    font-size: 1.1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    margin-top: 4px;
}

.status-next strong {
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* ============================================================
   SPECIALS
   ============================================================ */
.specials-section {
    background: var(--color-bg-alt);
    border-top: var(--section-divider);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.special-card {
    background: var(--color-bg-card);
    padding: 28px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.special-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.special-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.special-card:hover::after {
    transform: scaleX(1);
}

.special-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.special-day {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.special-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.special-card p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================================
   NEON SIGN — Weekly Specials
   ============================================================ */
.specials-section {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        var(--color-bg-alt);
    padding: 100px 0;
    border-top: var(--section-divider);
}

.neon-sign-wrapper {
    display: flex;
    justify-content: center;
}

.neon-sign {
    position: relative;
    display: inline-block;
}

.neon-border {
    border: 3px solid #e8412e;
    border-radius: 12px;
    padding: 8px;
    box-shadow:
        0 0 10px rgba(232, 65, 46, 0.4),
        0 0 40px rgba(232, 65, 46, 0.15),
        inset 0 0 10px rgba(232, 65, 46, 0.1);
    animation: neonFlicker 4s infinite;
}

.neon-inner {
    border: 1px solid rgba(232, 65, 46, 0.3);
    border-radius: 8px;
    padding: 48px 80px;
    text-align: center;
    background: rgba(232, 65, 46, 0.02);
}

.neon-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e8412e;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(232, 65, 46, 0.5);
}

.neon-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(232, 65, 46, 0.2);
    margin-bottom: 20px;
}

.neon-divider {
    width: 80px;
    height: 2px;
    background: #e8412e;
    margin: 0 auto 28px;
    box-shadow: 0 0 8px rgba(232, 65, 46, 0.6);
}

.neon-specials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neon-specials-list li {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5a623;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
    text-shadow: 0 0 15px rgba(245, 166, 35, 0.4);
}

.neon-specials-list li:last-child {
    border-bottom: none;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

/* ============================================================
   AMENITIES — Parallax
   ============================================================ */
.amenities-section {
    position: relative;
    overflow: hidden;
    border-top: var(--section-divider);
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, var(--glow-amber) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, var(--glow-warm) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        var(--color-bg);
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.amenities-content {
    position: relative;
    z-index: 2;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: rgba(26, 20, 16, 0.7);
    backdrop-filter: blur(10px);
    padding: 44px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.amenity-card:hover {
    background: rgba(35, 28, 22, 0.8);
    border-color: rgba(218, 165, 32, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(218, 165, 32, 0.03);
}

.amenity-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 16px;
}

.amenity-card h3 {
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    background:
        radial-gradient(ellipse at 40% 30%, var(--glow-amber) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, var(--glow-warm) 0%, transparent 40%),
        var(--color-bg-alt);
    border-top: var(--section-divider);
}

/* Interactive Accordion Gallery */
.gallery-accordion {
    display: flex;
    width: 100%;
    max-width: 1100px;
    height: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
}

.accordion-panel {
    position: relative;
    flex: 1 1 0%;
    min-width: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1410;
    border: 2px solid #292929;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background-size 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.7s ease,
                opacity 0.6s ease,
                transform 0.6s ease;
    will-change: flex-grow, box-shadow, background-size;
}

.accordion-panel.active {
    flex: 7 1 0%;
    background-size: cover;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.accordion-shadow {
    display: none;
}

.accordion-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    z-index: 2;
    pointer-events: none;
}

.accordion-icon {
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(32, 32, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid #444;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.accordion-info {
    white-space: nowrap;
    color: #fff;
}

.accordion-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    opacity: 0;
    transform: translateX(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.accordion-sub {
    font-size: 0.95rem;
    color: #ccc;
    opacity: 0;
    transform: translateX(25px);
    transition: opacity 0.7s ease 0.05s, transform 0.7s ease 0.05s;
}

.accordion-panel.active .accordion-title,
.accordion-panel.active .accordion-sub {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 120px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-bg);
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(218, 165, 32, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, rgba(12, 9, 7, 0.88) 0%, rgba(12, 9, 7, 0.72) 50%, rgba(12, 9, 7, 0.88) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   PARTY TYPES
   ============================================================ */
.party-types-section {
    background:
        radial-gradient(ellipse at 30% 40%, var(--glow-amber) 0%, transparent 45%),
        var(--color-bg-alt);
    border-top: var(--section-divider);
}

.party-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.party-type-card {
    background: var(--color-bg-card);
    padding: 40px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.party-type-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.party-type-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.party-type-card h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.party-type-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================================
   LEAGUE INFO CARDS
   ============================================================ */
.league-info-section {
    background:
        radial-gradient(ellipse at 60% 20%, var(--glow-warm) 0%, transparent 45%),
        var(--color-bg-alt);
    border-top: var(--section-divider);
}

.league-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.league-info-card {
    background: var(--color-bg-card);
    padding: 40px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.league-info-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.league-info-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.league-info-card h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.league-info-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section {
    background:
        radial-gradient(ellipse at 50% 0%, var(--glow-amber) 0%, transparent 50%),
        var(--color-bg);
    padding-top: 80px;
    padding-bottom: 100px;
    border-top: var(--section-divider);
}

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

.form-header h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.tavern-form {
    margin-top: 0;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.required {
    color: var(--color-accent);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(232, 65, 46, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-section-title {
    font-size: 1.4rem;
    color: var(--color-accent);
    margin: 36px 0 8px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    letter-spacing: 2px;
}

.form-section-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Amenity Selector (Book Party) */
.amenity-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.amenity-select-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: border-color var(--transition);
}

.amenity-select-card:hover {
    border-color: var(--color-accent);
}

.amenity-select-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.amenity-select-card label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 12px;
}

.amenity-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.counter-btn {
    width: 36px;
    height: 36px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.amenity-counter input {
    width: 48px;
    height: 36px;
    text-align: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-left: none;
    border-right: none;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.amenity-max {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    padding: 28px 32px;
    border-radius: var(--radius);
    margin-bottom: 28px;
    text-align: center;
}

.alert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-success);
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.alert-success h3 {
    color: var(--color-success);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.alert-success .btn {
    margin-top: 20px;
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    text-align: left;
}

.alert-error ul {
    padding-left: 18px;
    list-style: disc;
}

.alert-error li {
    color: #e74c3c;
    margin-bottom: 4px;
}

/* ============================================================
   POOL LEAGUE TOGGLE & TEAM FIELDS
   ============================================================ */
.signup-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--color-border-light);
}

.toggle-btn {
    flex: 1;
    padding: 18px 24px;
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-icon {
    font-size: 1.2rem;
}

.toggle-btn.active {
    background: var(--color-accent);
    color: #ffffff;
}

.toggle-btn:hover:not(.active) {
    background: var(--color-bg-card-hover);
    color: #ffffff;
}

.player-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
    padding: 16px;
    background: var(--color-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.player-row label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-row input,
.player-row select {
    width: 100%;
    padding: 8px 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.player-row input:focus,
.player-row select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.remove-player {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
    align-self: end;
}

.remove-player:hover {
    background: rgba(231, 76, 60, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: #080604;
}

.footer-top {
    padding: 60px 0 40px;
    border-top: 3px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--color-accent);
    color: #ffffff;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
}

.footer-bottom p {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* ============================================================
   ADMIN LOGIN
   ============================================================ */
.admin-body {
    background: var(--color-bg);
}

.admin-login-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.admin-login-card {
    background: var(--color-bg-card);
    padding: 44px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-accent);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
}

.admin-login-card h1 {
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 32px;
    letter-spacing: 3px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hours-grid-7 {
        grid-template-columns: repeat(4, 1fr);
    }

    .amenities-grid,
    .party-types-grid,
    .league-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .neon-inner {
        padding: 36px 48px;
    }

    .neon-title {
        font-size: 2.2rem;
    }

    .neon-specials-list li {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .hero-logo {
        height: 110px;
    }

    .nav-inner {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 3px solid var(--color-accent);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        margin: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > li > a {
        padding: 14px 0;
    }

    .nav-links > li > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background: transparent;
        padding: 0 0 0 16px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .page-hero {
        min-height: 40vh;
    }

    .page-hero h1 {
        font-size: 2.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-grid,
    .about-grid-3col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-single {
        min-height: 300px;
    }

    .about-image-stack {
        height: 400px;
    }

    .about-text-col .section-label {
        text-align: center;
    }

    .about-text-col h2 {
        text-align: center;
        font-size: 2.2rem;
    }

    .hours-grid,
    .hours-grid-7 {
        grid-template-columns: 1fr 1fr;
    }

    .neon-inner {
        padding: 28px 24px;
    }

    .neon-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .neon-specials-list li {
        font-size: 1rem;
        letter-spacing: 2px;
        padding: 10px 0;
    }

    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-accordion {
        height: 380px;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .amenity-selector {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .player-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hours-grid,
    .hours-grid-7 {
        grid-template-columns: 1fr;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .neon-inner {
        padding: 24px 16px;
    }

    .neon-title {
        font-size: 1.5rem;
    }

    .neon-specials-list li {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .gallery-accordion {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }

    .accordion-panel {
        min-height: 70px;
        min-width: 100%;
        background-size: cover;
    }

    .accordion-panel.active {
        min-height: 280px;
        background-size: cover;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid,
    .party-types-grid,
    .league-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FOOD ORDERING SYSTEM
   ============================================================ */

/* Page Hero - Short */
.page-hero-short {
    min-height: 220px;
    padding-top: 100px;
}

/* Order Page Layout */
.order-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 70px;
    z-index: 20;
    background: var(--color-bg);
    padding-top: 12px;
}

.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border: 2px solid var(--color-border-light);
    border-radius: 100px;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
}

.cat-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-heading);
}

.cat-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Category Headers */
.cat-header {
    margin-bottom: 20px;
}

.cat-header h2 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

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

.menu-category {
    margin-bottom: 48px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.menu-card {
    display: flex;
    align-items: stretch;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
    text-align: left;
    width: 100%;
}

.menu-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.menu-card:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.menu-card-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
}

.menu-card-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    flex: 1;
}

.menu-card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-secondary);
}

.menu-card-add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    background: var(--color-accent);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: background var(--transition);
}

.menu-card:hover .menu-card-add {
    background: var(--color-accent-hover);
}

/* Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 90px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--color-text-muted);
}

.cart-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cart-empty p {
    font-size: 1rem;
    color: var(--color-heading);
    font-weight: 600;
}

.cart-empty-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted) !important;
    font-weight: 400 !important;
    margin-top: 4px;
}

/* Cart Item */
.cart-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-heading);
}

.cart-item-price {
    font-weight: 700;
    color: var(--color-accent-secondary);
    white-space: nowrap;
    font-size: 0.95rem;
}

.cart-item-options {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    line-height: 1.5;
}

.cart-item-special {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--color-gold);
    margin-top: 2px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border-light);
    background: transparent;
    color: var(--color-heading);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cart-qty-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.cart-item-qty {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-heading);
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--color-error);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background var(--transition);
}

.cart-item-remove:hover {
    background: rgba(231, 76, 60, 0.15);
}

/* Cart Footer */
.cart-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-raised);
}

.cart-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding: 4px 0;
}

.cart-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-heading);
    border-top: 1px solid var(--color-border);
    padding-top: 10px;
    margin-top: 6px;
    margin-bottom: 14px;
}

/* Mobile Cart Button */
.mobile-cart-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 100;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(232, 65, 46, 0.4);
}

.mobile-cart-icon { font-size: 1.2rem; }

.mobile-cart-badge {
    background: #fff;
    color: var(--color-accent);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.mobile-cart-total {
    margin-left: auto;
    font-size: 1.1rem;
}

/* ---- Modals ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: var(--color-bg-raised);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color var(--transition);
}

.modal-close:hover { color: var(--color-heading); }

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.modal-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.modal-base-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-secondary);
    margin-top: 8px;
}

.modal-body {
    padding: 0 24px;
}

/* Option Groups */
.option-group {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.option-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.option-group-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
}

.option-group-tag {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.option-tag-required {
    background: rgba(232, 65, 46, 0.15);
    color: var(--color-accent);
}

.option-tag-optional {
    background: rgba(218, 165, 32, 0.12);
    color: var(--color-gold);
}

.option-choices {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-choice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
    border: 1px solid transparent;
}

.option-choice:hover {
    background: var(--color-bg-card);
}

.option-choice.selected {
    background: var(--color-bg-card);
    border-color: var(--color-accent);
}

.option-choice input[type="radio"],
.option-choice input[type="checkbox"] {
    display: none;
}

.option-check {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    font-size: 0.8rem;
    color: transparent;
}

.option-choice input[type="radio"] + .option-check {
    border-radius: 50%;
}

.option-choice.selected .option-check {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.option-choice-name {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-heading);
}

.option-choice-price {
    font-size: 0.85rem;
    color: var(--color-accent-secondary);
    font-weight: 600;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
    overflow: hidden;
    margin-left: 8px;
    flex-shrink: 0;
}

.qty-stepper[hidden] {
    display: none;
}

.qty-step-btn {
    background: transparent;
    border: 0;
    width: 30px;
    height: 30px;
    color: var(--color-heading);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    padding: 0;
}

.qty-step-btn:hover:not(:disabled) {
    background: var(--color-accent);
    color: #fff;
}

.qty-step-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.qty-step-value {
    min-width: 32px;
    padding: 0 6px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-heading);
    user-select: none;
}

.qty-stepper--readonly .qty-step-value {
    padding: 6px 14px;
    min-width: 44px;
    color: var(--color-accent-secondary);
}

.option-group-hint {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 4px 0 10px;
}

.option-group-hint-error {
    color: var(--color-error);
}

.option-group-hint-ok {
    color: var(--color-accent-secondary);
}

/* Special Instructions in Modal */
.modal-special {
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
}

.modal-special label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.modal-special textarea {
    width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-heading);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
}

.modal-special textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--color-border);
}

.modal-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-border-light);
    background: transparent;
    color: var(--color-heading);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.qty-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

#modal-qty {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    color: var(--color-heading);
}

.modal-add-btn {
    flex: 1;
}

/* Checkout Modal */
.modal-checkout .modal-body {
    padding: 20px 24px;
}

.checkout-summary {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.checkout-summary-item span:first-child {
    color: var(--color-text);
}

.checkout-summary-item span:last-child {
    color: var(--color-accent-secondary);
    font-weight: 600;
}

.checkout-summary-total {
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
    padding-top: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.checkout-summary-total span:first-child {
    color: var(--color-heading) !important;
}

#checkout-form .form-group {
    margin-bottom: 16px;
}

#checkout-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

#checkout-form .optional {
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
}

#checkout-form input,
#checkout-form textarea {
    width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-heading);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
}

#checkout-form input:focus,
#checkout-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

#checkout-form input::placeholder,
#checkout-form textarea::placeholder {
    color: var(--color-text-muted);
}

#checkout-errors {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

#place-order-btn {
    margin-top: 8px;
}

/* Confirm Modal */
.modal-confirm {
    text-align: center;
    padding: 48px 32px;
}

.confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-success);
    color: #fff;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.confirm-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent-secondary);
    margin-bottom: 12px;
}

.modal-confirm p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.confirm-details {
    text-align: left;
    background: var(--color-bg-card);
    border-radius: var(--radius);
    padding: 16px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}

.modal-confirm .btn {
    margin: 6px;
}

/* ---- Order Responsive ---- */
@media (max-width: 1024px) {
    .order-layout {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 90;
        border-radius: 16px 16px 0 0;
        max-height: 70vh;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .cart-sidebar.open {
        transform: translateY(0);
    }

    .mobile-cart-btn {
        display: flex !important;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-short {
        min-height: 180px;
        padding-top: 80px;
    }

    .page-hero-short h1 {
        font-size: 2rem;
    }

    .category-tabs {
        top: 60px;
    }

    .cat-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .modal-content {
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
        margin-top: auto;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-qty {
        width: 100%;
        justify-content: center;
    }

    .modal-add-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .order-page {
        padding-top: 20px;
    }

    .cat-tab {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .menu-card-title {
        font-size: 0.95rem;
    }

    .menu-card-desc {
        font-size: 0.78rem;
    }
}
