/* ================================================
   THE GARRISON — style.css
   Premium Dark Entertainment Website
   ================================================ */

/* ─── Variables ─────────────────────────────────── */
:root {
    --gold: #d4af37;
    --gold-light: #f5e17e;
    --gold-dark: #aa771c;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --bg: #050505;
    --bg-2: #0d0d0d;
    --bg-3: #111111;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.55);
    --nav-height: 80px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Utilities ─────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.eyebrow {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.1;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 60px;
}

.section-header { margin-bottom: 20px; }

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 20px auto;
}

.gold-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}
.gold-btn:hover { background: var(--gold); color: #000; }

.gold-link { color: var(--gold); transition: var(--transition); }
.gold-link:hover { color: var(--gold-light); }

.info-label {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.meta-badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ─── Reveal Animations ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: var(--nav-height);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
}
.nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: var(--transition);
}
.nav-cta:hover { background: var(--gold); color: #000; }

/* ─── HERO ──────────────────────────────────────── */
.hero {
    height: 100vh;
    min-height: 700px;
    background:
        linear-gradient(rgba(0,0,0,0.35) 0%, rgba(5,5,5,0.75) 100%),
        url('images/outside-night.jpg') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-content { max-width: 800px; padding: 20px; }
.hero-title {
    font-family: 'Cinzel', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 16px;
    gap: 0;
}
.hero-the {
    font-size: clamp(1rem, 3.5vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}
.hero-garrison {
    font-size: clamp(3.8rem, 14vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
}
.hero-location {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.tonight-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 8px 20px 8px 8px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.07);
    backdrop-filter: blur(10px);
}
.tonight-badge-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
    flex-shrink: 0;
}
.tonight-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
}
.tonight-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
}
.scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: bounce 2s infinite;
}
.scroll-arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: rotate(45deg) translateY(-2px);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── TONIGHT SECTION ───────────────────────────── */
.tonight-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}
.tonight-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.2);
    transform: scale(1.05);
    transition: background-image 0.6s ease;
}
.tonight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 45%, rgba(5,5,5,0.3) 100%);
}
.tonight-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tonight-text { max-width: 560px; }
.tonight-img-wrap {
    position: relative;
}
.tonight-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 1px solid rgba(212,175,55,0.25);
}
/* Decorative offset frame */
.tonight-img-frame {
    position: absolute;
    inset: 14px -14px -14px 14px;
    border: 1px solid rgba(212,175,55,0.2);
    z-index: -1;
    pointer-events: none;
}
.tonight-performer-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 14px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tonight-genre {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.tonight-bio {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}
.tonight-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* ─── LINEUP SECTION ────────────────────────────── */
.lineup-section { padding: 120px 0; background: var(--bg-2); }
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.lineup-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition);
    overflow: hidden;
    color: #fff;
}
.lineup-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.08);
    background: rgba(212, 175, 55, 0.04);
}
.lineup-card--tonight {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}
.tonight-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #000;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
}
.card-day {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
}
.card-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.1;
}
.card-genre { font-size: 0.65rem; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.card-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 6px; }
.card-arrow {
    margin-top: 18px;
    color: var(--gold);
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
}
.lineup-card:hover .card-arrow { transform: translateX(6px); }

/* ─── GALLERY SECTION ───────────────────────────── */
.gallery-section { padding: 120px 0; background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 60px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
/* First image spans full width as hero */
.gallery-item:nth-child(1) { grid-column: span 3; aspect-ratio: 21/9; }
/* Second and third share a row */
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) { aspect-ratio: 4/3; }
/* Remaining items fill evenly */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.75));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { font-size: 0.8rem; letter-spacing: 1px; color: rgba(255,255,255,0.85); }

/* ─── FIND US SECTION ───────────────────────────── */
.find-section { padding: 120px 0; background: var(--bg-2); }
.find-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.address-block { margin-bottom: 28px; color: var(--text-muted); line-height: 1.9; }
.hours-block {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
}
.hours-block .eyebrow { margin-bottom: 24px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--glass-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 14px 0; font-size: 0.9rem; color: var(--text-muted); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today-row td { color: var(--gold); font-weight: 600; }
.today-tag {
    font-size: 0.65rem !important;
    letter-spacing: 2px;
    color: var(--gold) !important;
    text-transform: uppercase;
    text-align: right !important;
}

/* ─── FOOTER ────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--glass-border); padding-top: 80px; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.5);
    object-fit: cover;
    object-position: center center;
    display: block;
    margin-bottom: 16px;
}
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 6px; }
.footer-tag { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-link-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-link { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; transition: var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}
.footer-hours-day {
    white-space: nowrap;
}
.footer-hours-time {
    white-space: nowrap;
    color: var(--gold);
}
.footer-hours-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ─── PERFORMER PAGE ────────────────────────────── */
.performer-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 28px 5%;
    z-index: 1000;
    background: linear-gradient(rgba(5,5,5,0.85), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.performer-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 5% 100px;
    position: relative;
    overflow: hidden;
}
.performer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.22);
    z-index: 0;
}
.performer-hero-content { position: relative; z-index: 1; max-width: 720px; }
.performer-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}
.performer-genre {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.performer-bio { color: var(--text-muted); line-height: 1.85; max-width: 600px; margin: 0 auto 30px; }
.performer-meta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.performer-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 8px;
}
.performer-gallery img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ─── ADMIN PAGE ────────────────────────────────── */
.admin-page { padding: calc(var(--nav-height) + 40px) 5% 80px; max-width: 800px; }
.admin-page h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; }
.admin-page > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.admin-box {
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    padding: 32px;
    margin-bottom: 20px;
}
.admin-box h3 { color: var(--gold); margin-bottom: 8px; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
.admin-box p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.admin-box input[type="file"],
.admin-box input[type="date"],
.admin-box select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: var(--bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    appearance: none;
}
.admin-box input:focus, .admin-box select:focus { outline: none; border-color: var(--gold); }

/* ─── MULTI-ACT / DOUBLE-BILL CARDS ─────────────── */
.double-bill-tag {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}
.multi-act-entry {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
}
.act-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    min-width: 58px;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.act-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}
.act-name:hover { color: var(--gold); }
.act-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 2px 0;
}

/* ─── MEET THE TEAM ──────────────────────────────── */
.team-section {
    background: var(--bg);
    overflow: hidden;
}
.team-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.team-img-col {
    overflow: hidden;
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 14%;
    background: var(--bg);
}
.team-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin: 0 0 20px 0;
}
.team-the {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.55em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.team-garrison {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    display: block;
}
.team-sub {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0 0 24px 0;
    display: block;
}
.team-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}
.team-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 420px;
}

/* ─── HIGHLIGHTS STRIP ───────────────────────────── */
.highlights-strip {
    background: var(--bg-3);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 22px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.highlights-strip::-webkit-scrollbar { display: none; }
.highlights-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: max-content;
    padding: 0 40px;
}
.hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    transition: var(--transition);
}
.hl-item:hover { color: var(--gold); }
.hl-icon { font-size: 1rem; }
.hl-sep {
    width: 1px;
    height: 18px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* ─── DRAFT / ON TAP ─────────────────────────────── */
.draft-section {
    padding: 120px 0;
    background: var(--bg-2);
}
.draft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}
.draft-card {
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}
.draft-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); }
.draft-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.draft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.draft-card:hover .draft-img { transform: scale(1.04); }
.draft-info { padding: 32px; }
.draft-badge {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.draft-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 14px;
}
.draft-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}
.draft-origin {
    font-size: 0.78rem;
    color: rgba(212,175,55,0.7);
    letter-spacing: 0.5px;
}

/* ─── REVIEWS CAROUSEL ───────────────────────────── */
.reviews-section {
    padding: 120px 0 80px;
    background: var(--bg);
    overflow: hidden;
}
.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 60px;
}
.rev-track-wrap {
    flex: 1;
    position: relative;
    min-height: 280px;
}
#reviews-track {
    position: relative;
    min-height: 260px;
}
.rev-card {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%) scale(0.94);
    width: min(720px, 90vw);
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.rev-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}
.rev-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.rev-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 28px;
}
.rev-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rev-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}
.rev-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}
.rev-meta {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}
.rev-dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.rev-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.6);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.rev-btn:hover { border-color: var(--gold); color: var(--gold); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.rev-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/outside-night.jpg') center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.85) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 720px;
}
.page-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 10px 0 18px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── FEATURE CARDS (What's On page) ─────────────── */
.features-section {
    padding: 120px 0;
    background: var(--bg-3);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.feature-card {
    background: var(--bg-2);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
}
.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.feature-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
}

/* ─── BOOKING CTA ─────────────────────────────────── */
.booking-cta-section {
    padding: 100px 0;
    background: var(--bg-2);
}
.booking-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.booking-cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 20px;
}
.booking-cta-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

/* ─── NAV ACTIVE LINK ─────────────────────────────── */
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--gold);
    margin-top: 2px;
}

/* ─── NAV HAMBURGER ───────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: var(--transition);
}
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ─── LIVE MUSIC PAGE ────────────────────────────── */
.lm-why-section {
    padding: 120px 0;
    background: var(--bg);
}
.lm-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lm-why-para {
    font-size: 0.97rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.lm-why-img-wrap {
    position: relative;
}
.lm-why-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lm-genres-section {
    padding: 120px 0;
    background: var(--bg-2);
}
.lm-genres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.lm-genre-card {
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.lm-genre-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.lm-genre-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}
.lm-genre-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.lm-genre-text {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
    .lm-genres-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .lm-why-grid { grid-template-columns: 1fr; gap: 40px; }
    .lm-why-img { aspect-ratio: 16/9; }
    .lm-genres-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .lm-genres-grid { grid-template-columns: 1fr; }
}

/* ─── WATCH SPORT PAGE ───────────────────────────── */
.sp-sports-section {
    padding: 120px 0;
    background: var(--bg-2);
}
.sp-sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.sp-sport-card {
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.sp-sport-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.sp-sport-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}
.sp-sport-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.sp-sport-text {
    font-size: 0.87rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.sp-screens-section {
    padding: 120px 0;
    background: var(--bg);
}
.sp-screens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sp-screens-para {
    font-size: 0.97rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.sp-screens-img-wrap {
    position: relative;
}
.sp-screens-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sp-draught-section {
    padding: 120px 0;
    background: var(--bg-3);
}
.sp-draught-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.sp-draught-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

@media (max-width: 1024px) {
    .sp-sports-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sp-sports-grid { grid-template-columns: 1fr 1fr; }
    .sp-screens-grid { grid-template-columns: 1fr; gap: 40px; }
    .sp-screens-img { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
    .sp-sports-grid { grid-template-columns: 1fr; }
}

/* ─── DRINKS PAGE ────────────────────────────────── */
.dk-happy-section {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}
.dk-happy-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
}
.dk-happy-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.dk-happy-display {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    color: var(--gold);
    margin: 24px 0 20px;
    line-height: 1.3;
}
.dk-happy-para {
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
}
.dk-happy-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.dk-cocktails-section {
    padding: 120px 0;
    background: var(--bg);
}
.dk-cocktails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.dk-cocktail-card {
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.dk-cocktail-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.dk-cocktail-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}
.dk-cocktail-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.dk-cocktail-desc {
    font-size: 0.87rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.dk-spirits-section {
    padding: 120px 0;
    background: var(--bg-2);
}
.dk-spirits-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.dk-spirits-para {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .dk-cocktails-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .dk-cocktails-grid { grid-template-columns: 1fr; }
}

/* ─── MAP EMBED ──────────────────────────────────── */
.map-embed {
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}
.map-embed iframe {
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .team-inner { grid-template-columns: 1fr; }
    .team-img-col { aspect-ratio: 16/9; }
    .team-text-col { padding: 60px 32px; }
    .draft-grid { grid-template-columns: 1fr; gap: 30px; }
    .rev-card { padding: 28px 24px; }

    .tonight-section { padding: 80px 0; }
    .tonight-overlay { background: rgba(5,5,5,0.88); }
    .tonight-inner { grid-template-columns: 1fr; gap: 36px; }
    .tonight-img-wrap { max-width: 320px; margin: 0 auto; }
    .tonight-img { aspect-ratio: 4/3; }

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

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
    .gallery-item { aspect-ratio: 4/3; }

    .find-grid { grid-template-columns: 1fr; gap: 40px; }
    .find-section .section-title { text-align: left; }

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

    .performer-gallery { grid-template-columns: 1fr; }
}

/* ─── Find Us Page ──────────────────────────────── */

/* Map + Info grid */
.fu-map-section {
    padding: 100px 0 80px;
    background: var(--bg-2);
}
.fu-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.fu-map-wrap {
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.fu-map-wrap iframe { width: 100%; height: 100%; }

/* Info column */
.fu-info-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.fu-info-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.fu-info-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.fu-info-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.fu-info-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.fu-map-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition);
}
.fu-map-link:hover { opacity: 0.75; }

/* Hours grid inside info block */
.fu-hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px 24px;
    margin-bottom: 12px;
}
.fu-hours-grid span:nth-child(odd) {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.fu-hours-grid span:nth-child(even) {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}
.fu-hours-note {
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 4px;
}
.gold-link {
    color: var(--gold);
    transition: opacity var(--transition);
}
.gold-link:hover { opacity: 0.75; }

/* Getting Here */
.fu-getting-section {
    padding: 100px 0;
    background: var(--bg);
}
.fu-getting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fu-getting-card {
    background: var(--bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 36px 28px;
    transition: border-color var(--transition), transform var(--transition);
}
.fu-getting-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.fu-getting-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}
.fu-getting-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.fu-getting-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Social section */
.fu-social-section {
    padding: 80px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.fu-social-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.fu-social-text { flex: 1; }
.fu-social-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-top: 16px;
}
.fu-social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fu-social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    white-space: nowrap;
}
.fu-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.fu-wa-btn {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}
.fu-wa-btn:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
    color: #25d366;
}

/* ─── Responsive: Find Us ────────────────────────── */
@media (max-width: 900px) {
    .fu-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fu-map-wrap { height: 380px; }
    .fu-getting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fu-social-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .fu-social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (max-width: 600px) {
    .fu-getting-grid {
        grid-template-columns: 1fr;
    }
    .fu-map-wrap { height: 300px; }
    .fu-social-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .tonight-badge { flex-direction: column; gap: 4px; text-align: center; padding: 14px 20px; }
    .tonight-meta { flex-direction: column; gap: 8px; }
    .hours-block { padding: 24px; }
    .hero-title { letter-spacing: -1px; }
}
