/*
Theme Name: Concourse Bar
Theme URI: https://www.concoursebar.com.au/
Author: Andy
Description: Premium sports bar and waitressing entertainment theme for Concourse Bar Wynyard Sydney.
Version: 2.0
Text Domain: concoursebar
*/

/* -----------------------------------------------------------
   1. CSS Variables & Design Tokens (Concourse Bar Official Logo)
----------------------------------------------------------- */
:root {
    --bg-main: #07090f;
    --bg-secondary: #0d111b;
    --bg-card: #111726;
    --bg-card-hover: #172035;

    /* Official Concourse Bar Station Logo Palette (Cyan & Red) */
    --brand-cyan: #00c2ff;
    --brand-cyan-light: #5ce1e6;
    --brand-cyan-dark: #008ebc;
    --brand-cyan-gradient: linear-gradient(135deg, #00c2ff 0%, #0077b6 100%);
    --brand-cyan-glow: 0 0 22px rgba(0, 194, 255, 0.45);
    --brand-cyan-border: rgba(0, 194, 255, 0.3);

    --brand-red: #e52534;
    --brand-red-light: #ff4d5a;
    --brand-red-dark: #b91c1c;
    --brand-red-gradient: linear-gradient(135deg, #e52534 0%, #b91c1c 100%);
    --brand-red-glow: 0 0 25px rgba(229, 37, 52, 0.5);
    --brand-red-border: rgba(229, 37, 52, 0.38);

    /* Dual Brand Gradient */
    --brand-gradient: linear-gradient(135deg, #e52534 0%, #00c2ff 100%);

    /* Theme Primary Accent: Electric Neon Cyan */
    --gold: var(--brand-cyan);
    --gold-light: var(--brand-cyan-light);
    --gold-dark: var(--brand-cyan-dark);
    --gold-gradient: var(--brand-cyan-gradient);
    --gold-glow: var(--brand-cyan-glow);
    --gold-border: var(--brand-cyan-border);
    
    --text-light: #f5f6fa;
    --text-muted: #9ba3b4;
    --text-dim: #656d80;
    --border-subtle: rgba(255, 255, 255, 0.08);

    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* -----------------------------------------------------------
   2. Reset & Global Styles
----------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--brand-cyan) !important; }
.text-cyan { color: var(--brand-cyan) !important; }
.text-red { color: var(--brand-red) !important; }

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-cyan);
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid var(--brand-cyan-border);
    border-radius: 30px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.gold-divider {
    width: 68px;
    height: 4px;
    background: linear-gradient(90deg, #e52534 0%, #00c2ff 100%);
    border-radius: 2px;
    margin: 15px 0 25px;
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.4);
}

.gold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* -----------------------------------------------------------
   3. Buttons (Iconic Logo Red Action & Neon Cyan Accents)
----------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--brand-red-gradient);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(229, 37, 52, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff3d4d 0%, #cf1d2b 100%);
    color: #ffffff;
    box-shadow: 0 6px 26px rgba(229, 37, 52, 0.65), 0 0 15px rgba(0, 194, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(0, 194, 255, 0.08);
    color: var(--text-light);
    border: 1px solid var(--brand-cyan-border);
}

.btn-secondary:hover {
    background: rgba(0, 194, 255, 0.18);
    color: var(--brand-cyan-light);
    border-color: var(--brand-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--brand-cyan);
    border: 1.5px solid var(--brand-cyan);
}

.btn-outline:hover {
    background: var(--brand-cyan);
    color: #07090f;
    transform: translateY(-2px);
    box-shadow: var(--brand-cyan-glow);
}

.btn-block {
    width: 100%;
}

/* -----------------------------------------------------------
   4. Top Announcement / Info Bar
----------------------------------------------------------- */
.top-info-bar {
    background: #05070c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: var(--text-muted);
    padding: 7px 0;
    position: relative;
    z-index: 1001;
}

.top-info-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 11.5px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    display: inline-block;
    animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.top-location {
    color: var(--text-muted);
    font-size: 12px;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-link {
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.top-info-bar .divider {
    color: rgba(255, 255, 255, 0.15);
}

/* -----------------------------------------------------------
   5. Sticky Header & Navigation Bar
----------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-header.scrolled {
    background: rgba(7, 9, 15, 0.97);
    padding: 2px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 194, 255, 0.12);
    border-bottom: 1px solid rgba(0, 194, 255, 0.28);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand Identity */
.site-branding .brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-crest,
.roundel-crest {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.45));
    transition: var(--transition);
}

.roundel-logo-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-link:hover .roundel-crest {
    transform: rotate(-6deg) scale(1.08);
    filter: drop-shadow(0 0 14px rgba(0, 194, 255, 0.7)) drop-shadow(0 0 8px rgba(229, 37, 52, 0.45));
}

.brand-text-group {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.1;
    display: flex;
    gap: 6px;
}

.brand-name {
    color: #ffffff;
}

.brand-bar {
    color: var(--brand-red);
    text-shadow: 0 0 14px rgba(229, 37, 52, 0.6);
}

.brand-sub {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--brand-cyan);
    margin-top: 2px;
    opacity: 0.9;
}

/* Primary Desktop Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #e2e6ef;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.nav-menu ul li a:hover {
    color: var(--brand-cyan);
    background: rgba(0, 194, 255, 0.08);
    border-color: rgba(0, 194, 255, 0.25);
    transform: translateY(-1px);
}

/* Active Menu Item Highlight */
.nav-menu ul li.current-menu-item a,
.nav-menu ul li.current_page_item a {
    color: #fff !important;
    background: rgba(0, 194, 255, 0.15) !important;
    border: 1px solid var(--brand-cyan) !important;
    box-shadow: 0 0 14px rgba(0, 194, 255, 0.35);
}

.mobile-nav-header,
.mobile-nav-actions {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: var(--transition);
}

.btn-call-header i {
    color: var(--brand-cyan);
    font-size: 12px;
}

.btn-call-header:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    background: rgba(0, 194, 255, 0.1);
    transform: translateY(-1px);
}

.btn-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--brand-red-gradient);
    color: #fff;
    padding: 9px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(229, 37, 52, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.btn-cta-header:hover {
    background: linear-gradient(135deg, #ff3d4d 0%, #cf1d2b 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(229, 37, 52, 0.65), 0 0 15px rgba(0, 194, 255, 0.3);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--brand-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* -----------------------------------------------------------
   6. Hero Section
----------------------------------------------------------- */
.hero-section {
    min-height: 85vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid var(--brand-cyan);
    color: var(--brand-cyan-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

.hero-title {
    font-size: clamp(40px, 8vw, 76px);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
    margin-bottom: 8px;
}

.hero-location {
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-quote {
    font-size: clamp(16px, 2.2vw, 22px);
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

/* -----------------------------------------------------------
   7. Feature Highlights Strip
----------------------------------------------------------- */
.highlights-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 30px 0;
}

.highlights-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--gold-border);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.highlight-icon {
    font-size: 28px;
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 194, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.highlight-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* -----------------------------------------------------------
   8. About Section
----------------------------------------------------------- */
.about-section {
    background: var(--bg-main);
}

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

.about-content .lead-text {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 35px;
}

.badge-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-item i {
    color: var(--gold);
}

.about-visuals {
    position: relative;
    padding-bottom: 40px;
}

.visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.visual-card:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.visual-card img {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.visual-card img:hover {
    transform: scale(1.04);
}

.main-visual {
    height: 380px;
}

.main-visual img {
    height: 100%;
}

.sub-visual {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 65%;
    height: 220px;
    border: 3px solid var(--gold);
}

.sub-visual img {
    height: 100%;
}

/* -----------------------------------------------------------
   9. Weekly Specials Section
----------------------------------------------------------- */
.specials-section {
    background: var(--bg-secondary);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.special-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.special-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.special-image-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.special-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.special-card:hover .special-image-wrap img {
    transform: scale(1.05);
}

.special-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.special-info {
    padding: 24px;
}

.special-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.special-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* -----------------------------------------------------------
   10. Sports & What's On Section
----------------------------------------------------------- */
.sports-section {
    background: var(--bg-main);
}

.sports-tags-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sport-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    color: var(--text-light);
    transition: var(--transition);
}

.sport-tag.active, .sport-tag:hover {
    background: var(--brand-cyan);
    color: #07090f;
    border-color: var(--brand-cyan);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.4);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.sports-poster-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.sports-poster-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.sports-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.sports-poster-card:hover img {
    transform: scale(1.06);
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.poster-overlay h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 4px;
}

.poster-overlay p {
    font-size: 13px;
    color: var(--text-light);
}

/* -----------------------------------------------------------
   11. Waitresses & Timetable Section
----------------------------------------------------------- */
.waitresses-section {
    background: var(--bg-secondary);
}

.timetable-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 60px;
}

.timetable-header {
    background: linear-gradient(90deg, #1c1f2b 0%, #252a3a 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.timetable-header h3 {
    font-size: 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.timetable-header span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.timetable-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    divide-x: 1px solid var(--border-subtle);
}

.timetable-col {
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.timetable-col:last-child {
    border-right: none;
}

.timetable-col:hover {
    background: var(--bg-card-hover);
}

.timetable-col.highlight-col {
    background: rgba(0, 194, 255, 0.05);
}

.timetable-col.friday-col {
    background: rgba(0, 194, 255, 0.1);
    border-left: 1px solid var(--brand-cyan-border);
    border-right: 1px solid var(--brand-cyan-border);
}

.col-day {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.col-time {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.col-waitress {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
}

.col-waitress i {
    color: #e74c3c;
    font-size: 11px;
}

/* Waitress Gallery */
.gallery-title {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.waitress-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.waitress-photo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 340px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.waitress-photo-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.waitress-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.waitress-photo-card:hover img {
    transform: scale(1.05);
}

.waitress-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

/* -----------------------------------------------------------
   12. Food & Pizza Menu Section
----------------------------------------------------------- */
.menu-section {
    background: var(--bg-main);
}

.menu-food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.menu-highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.menu-highlight-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.menu-img-wrap {
    height: 320px;
    overflow: hidden;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.menu-highlight-card:hover .menu-img-wrap img {
    transform: scale(1.05);
}

.menu-body {
    padding: 24px;
}

.menu-body h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
}

.menu-body p {
    color: var(--text-muted);
    font-size: 15px;
}

.food-gallery-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.food-thumb {
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.food-thumb:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.food-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* -----------------------------------------------------------
   13. Venue Hire Section
----------------------------------------------------------- */
.venue-hire-section {
    background: var(--bg-secondary);
}

.venue-hire-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.venue-hire-content {
    padding: 60px;
}

.venue-hire-content .lead-text {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.venue-hire-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.venue-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 35px;
}

.perk {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.perk i {
    color: var(--gold);
}

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

.venue-hire-image {
    position: relative;
}

.venue-hire-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* -----------------------------------------------------------
   14. Reservation & Contact Section
----------------------------------------------------------- */
.booking-section {
    background: var(--bg-main);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.booking-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.booking-form-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.booking-feedback {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid #27ae60;
    color: #2ecc71;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #0f1118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.contact-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-card .contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 194, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card .contact-details h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px;
}

.contact-card .contact-details p {
    font-size: 14px;
    color: var(--text-muted);
}

.map-embed-wrapper {
    margin-top: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

/* -----------------------------------------------------------
   15. Lightbox Modal
----------------------------------------------------------- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-modal.show {
    display: flex;
}

.lightbox-modal-content {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

/* -----------------------------------------------------------
   16. Page Banner & Body (Inner Pages)
----------------------------------------------------------- */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 20px 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.page-title {
    font-size: 44px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.page-subtitle {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.page-content-area {
    padding: 70px 0;
}

.page-body-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.page-body-card h2, .page-body-card h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--gold);
}

.page-body-card p {
    color: var(--text-light);
    margin-bottom: 18px;
}

/* -----------------------------------------------------------
   17. Site Footer (Luxury Modern Upgrade)
----------------------------------------------------------- */
.site-footer {
    background: #05070c;
    background-image: 
        radial-gradient(circle at 12% 10%, rgba(0, 194, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 88% 85%, rgba(229, 37, 52, 0.06) 0%, transparent 45%);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #e52534 0%, #00c2ff 50%, #e52534 100%) 1;
    position: relative;
    color: var(--text-muted);
    overflow: hidden;
}

/* 17.1 Transit Banner (Pre-Footer) */
.footer-transit-banner {
    background: rgba(13, 17, 27, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 194, 255, 0.16);
    padding: 18px 0;
}

.transit-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.transit-info-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.transit-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid var(--brand-cyan-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 19px;
    box-shadow: 0 0 16px rgba(0, 194, 255, 0.25);
    flex-shrink: 0;
}

.transit-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.transit-title {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.transit-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.transit-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.35);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: 0.5px;
}

.live-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
    animation: liveStatusPulse 2s infinite ease-in-out;
}

@keyframes liveStatusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.7; }
}

.transit-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-transit-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.btn-transit-call {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.btn-transit-call:hover {
    background: rgba(0, 194, 255, 0.12);
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.3);
}

.btn-transit-book {
    background: var(--brand-red-gradient);
    border: 1px solid var(--brand-red-border);
    color: #fff;
    box-shadow: 0 0 12px rgba(229, 37, 52, 0.35);
}

.btn-transit-book:hover {
    background: linear-gradient(135deg, #ff3d4d 0%, #cf1d2b 100%);
    color: #fff;
    box-shadow: 0 0 18px rgba(229, 37, 52, 0.6);
    transform: translateY(-2px);
}

.btn-transit-map {
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid var(--brand-cyan-border);
    color: var(--brand-cyan);
}

.btn-transit-map:hover {
    background: var(--brand-cyan);
    color: #05070c;
    box-shadow: var(--brand-cyan-glow);
}

/* 17.2 Main 4-Column Grid */
.footer-top {
    padding: 60px 0 45px;
}

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

/* Col 1: About & Brand */
.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-roundel-svg {
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.5));
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-roundel-svg:hover {
    transform: rotate(6deg) scale(1.04);
}

.footer-title-group {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.5px;
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
}

.footer-concourse {
    color: #ffffff;
}

.footer-bar {
    color: var(--brand-red);
    text-shadow: 0 0 14px rgba(229, 37, 52, 0.65);
}

.footer-tagline {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: var(--brand-cyan);
    text-transform: uppercase;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: #a6b0c3;
}

.footer-amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #c9d2e3;
    transition: var(--transition);
}

.amenity-tag i {
    color: var(--brand-cyan);
    font-size: 10px;
}

.amenity-tag:hover {
    background: rgba(0, 194, 255, 0.08);
    border-color: var(--brand-cyan-border);
    color: #fff;
    transform: translateY(-1px);
}

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

.socials-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 13px;
}

.footer-socials a:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    color: #05070c;
    box-shadow: 0 0 16px rgba(0, 194, 255, 0.5);
    transform: translateY(-3px);
}

/* Col Headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.heading-accent {
    width: 3px;
    height: 14px;
    background: var(--brand-cyan);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--brand-cyan);
    display: inline-block;
}

/* Col 2: Navigation Links */
.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    margin: 0;
}

.footer-nav-list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #9ba4b5;
    transition: var(--transition);
    text-decoration: none;
}

.footer-nav-list li a i {
    font-size: 10px;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-nav-list li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav-list li a:hover i {
    color: var(--brand-cyan);
}

/* Mini Badges in Footer Nav */
.badge-tag {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.badge-new {
    background: rgba(0, 194, 255, 0.15);
    color: var(--brand-cyan);
    border: 1px solid var(--brand-cyan-border);
}

.badge-hot {
    background: rgba(229, 37, 52, 0.18);
    color: #ff6b77;
    border: 1px solid var(--brand-red-border);
}

.badge-sports {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.35);
}

.badge-vip {
    background: rgba(155, 89, 182, 0.2);
    color: #d7b5f5;
    border: 1px solid rgba(155, 89, 182, 0.4);
}

/* Col 3: Contact Details Cards */
.footer-contact-card {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.contact-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid rgba(0, 194, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.contact-card-val {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.45;
    margin-bottom: 3px;
}

.contact-inline-link {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--brand-cyan);
    transition: var(--transition);
    text-decoration: none;
}

.contact-inline-link:hover {
    text-decoration: underline;
    color: #fff;
}

.contact-phone-link, .contact-email-link {
    font-size: 13.5px;
    font-weight: 700;
    color: #f1f5f9;
    transition: var(--transition);
    text-decoration: none;
}

.contact-phone-link:hover, .contact-email-link:hover {
    color: var(--brand-cyan);
}

/* Col 4: Trading Hours & VIP Event Card */
.hours-card {
    background: rgba(17, 23, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-bottom: 18px;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    padding-bottom: 6px;
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    color: #cbd5e1;
}

.hours-time {
    color: #fff;
    font-weight: 700;
}

.hours-private {
    color: var(--brand-cyan);
    font-size: 11.5px;
}

.footer-event-card {
    background: linear-gradient(135deg, rgba(229, 37, 52, 0.12) 0%, rgba(0, 194, 255, 0.08) 100%);
    border: 1px solid rgba(0, 194, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.event-card-header {
    margin-bottom: 6px;
}

.event-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #ff6b77;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.event-card-header h5 {
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.event-card-desc {
    font-size: 11.5px;
    color: #a6b0c3;
    line-height: 1.45;
    margin-bottom: 10px;
}

.btn-footer-event {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 14px;
    background: var(--brand-red-gradient);
    border: 1px solid var(--brand-red-border);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(229, 37, 52, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.btn-footer-event:hover {
    background: linear-gradient(135deg, #ff3d4d 0%, #cf1d2b 100%);
    box-shadow: 0 4px 18px rgba(229, 37, 52, 0.65);
    transform: translateY(-2px);
    color: #fff;
}

/* 17.3 Footer Bottom Bar */
.footer-bottom {
    background: #020306;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    font-size: 12.5px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.copyright-text {
    color: #cbd5e1;
    margin: 0;
    font-size: 12.5px;
}

.copyright-text strong {
    color: #fff;
}

.rsa-text {
    color: var(--text-dim);
    font-size: 11px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rsa-text i {
    color: var(--brand-cyan);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

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

.footer-bottom-links a:hover {
    color: var(--brand-cyan);
}

.footer-bottom-links .sep {
    color: var(--text-dim);
    font-size: 10px;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid var(--brand-cyan-border);
    border-radius: 20px;
    color: var(--brand-cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top-btn:hover {
    background: var(--brand-cyan);
    color: #020306;
    box-shadow: var(--brand-cyan-glow);
    transform: translateY(-2px);
}

/* -----------------------------------------------------------
   18. Mobile & Responsive Media Queries
----------------------------------------------------------- */
@media (max-width: 1024px) {
    .timetable-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .timetable-col:nth-child(3) {
        border-right: none;
    }
    .timetable-col {
        border-bottom: 1px solid var(--border-subtle);
    }
    .about-grid, .venue-hire-card, .booking-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sub-visual {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

/* Mobile Backdrop */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 992px) {
    .top-info-bar {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .btn-call-header .btn-text,
    .btn-cta-header .btn-text {
        display: none;
    }
    .btn-call-header, .btn-cta-header {
        padding: 8px 12px;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #0d0f18;
        z-index: 10001;
        padding: 25px 20px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
        border-left: 1px solid var(--gold-border);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .mobile-nav-title {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 800;
        color: var(--gold);
        letter-spacing: 2px;
    }
    .mobile-close-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        transition: var(--transition);
    }
    .mobile-close-btn:hover {
        color: var(--gold);
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        margin-bottom: 25px;
    }
    .nav-menu ul li a {
        display: block;
        font-size: 15px;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--border-subtle);
    }
    .mobile-info-footer {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-top: 10px;
    }
    .mobile-info-footer p {
        margin-bottom: 4px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .timetable-grid {
        grid-template-columns: 1fr;
    }
    .timetable-col {
        border-right: none;
    }
    .food-gallery-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .venue-hire-content {
        padding: 30px 20px;
    }
    .booking-form-box, .contact-info-box {
        padding: 25px 20px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .transit-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .transit-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-bottom-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* -----------------------------------------------------------
   19. Subpage Portals Section (Home Page)
----------------------------------------------------------- */
.portals-section {
    background: var(--bg-secondary);
}

.portal-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portal-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.portal-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portal-card:hover .portal-img-wrap img {
    transform: scale(1.06);
}

.portal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.portal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portal-body h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.portal-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.portal-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.portal-link:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

/* Home Quick Contact Strip */
.home-contact-strip {
    background: var(--bg-main);
    padding: 50px 0;
}

.home-contact-box {
    background: linear-gradient(135deg, #161924 0%, #1f2333 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.contact-box-left h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-box-left p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-box-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* -----------------------------------------------------------
   20. WordPress Gutenberg Block Styles
   (Ensures client edits in WP Admin look stunning!)
----------------------------------------------------------- */
.page-body-card .wp-block-image {
    margin: 25px 0;
}

.page-body-card .wp-block-image img {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.page-body-card .wp-block-image img:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.page-body-card .wp-block-gallery {
    gap: 20px;
    margin: 30px 0;
}

.page-body-card .wp-block-gallery .wp-block-image {
    margin: 0;
}

.page-body-card .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #0f1118;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.page-body-card .wp-block-table th {
    background: #191c28;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gold-border);
}

.page-body-card .wp-block-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-size: 14px;
}

.page-body-card .wp-block-table tr:hover td {
    background: rgba(0, 194, 255, 0.05);
}

.page-body-card .wp-block-quote {
    border-left: 4px solid var(--brand-cyan);
    background: rgba(0, 194, 255, 0.06);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-light);
}

.page-body-card .wp-block-button__link {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background: var(--brand-red-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 37, 52, 0.4);
    transition: var(--transition);
}

.page-body-card .wp-block-button__link:hover {
    background: linear-gradient(135deg, #ff3d4d 0%, #cf1d2b 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 37, 52, 0.6);
}

/* -----------------------------------------------------------
   21. Interactive Digital Menu Page & Real-Time Filtering
   (concoursebar.com.au /menu/)
----------------------------------------------------------- */
.menu-page-area {
    padding: 50px 0 90px;
}

.digital-menu-header {
    margin-bottom: 25px;
}

.menu-search-wrapper {
    position: relative;
    max-width: 580px;
    margin: 0 auto 28px;
}

.menu-search-wrapper .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-cyan);
    font-size: 16px;
    pointer-events: none;
}

.menu-search-input {
    width: 100%;
    padding: 14px 44px 14px 48px;
    background: rgba(17, 23, 38, 0.92);
    border: 1px solid var(--brand-cyan-border);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.menu-search-input:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.35), 0 8px 24px rgba(0, 0, 0, 0.5);
    background: rgba(20, 27, 44, 0.96);
}

.menu-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.clear-search-btn:hover {
    background: var(--brand-cyan);
    color: #07090f;
}

/* Category Filter Tabs */
.menu-category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.menu-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(17, 23, 38, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.menu-tab-btn i {
    font-size: 13px;
    color: var(--brand-cyan);
    transition: color 0.25s ease;
}

.menu-tab-btn:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.menu-tab-btn.active {
    background: var(--brand-cyan-gradient);
    border-color: var(--brand-cyan);
    color: #07090f;
    box-shadow: 0 4px 18px rgba(0, 194, 255, 0.45);
    transform: translateY(-2px);
}

.menu-tab-btn.active i {
    color: #07090f;
}

/* Status Bar */
.menu-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.menu-photo-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 12px;
}

/* Digital Menu Grid */
.digital-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 26px;
}

.menu-dish-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.menu-dish-card:hover {
    border-color: var(--brand-cyan-border);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 194, 255, 0.18);
}

.dish-photo-slot {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: #090a0f;
}

.dish-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.45s ease;
}

.dish-photo-slot:hover img {
    transform: scale(1.08);
}

.dish-photo-slot.slot-coming-soon {
    background: #0d0f16;
}

.dish-photo-slot.slot-coming-soon img.coming-soon-img {
    cursor: default;
    transition: transform 0.3s ease;
}

.dish-photo-slot.slot-coming-soon:hover img.coming-soon-img {
    transform: scale(1.03);
}

.dish-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 11, 16, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--brand-cyan);
    color: var(--brand-cyan);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.photo-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 2;
}

.dish-photo-slot:hover .photo-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

.dish-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--brand-cyan);
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(0, 194, 255, 0.4);
}

.dish-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.dish-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.dish-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* No Results Fallback */
.no-menu-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--brand-cyan-border);
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.no-results-icon {
    font-size: 44px;
    color: var(--brand-cyan);
    margin-bottom: 16px;
    opacity: 0.8;
}

.no-menu-results h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
}

.no-menu-results p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Menu Bottom Callout */
.menu-bottom-callout {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(17, 23, 38, 0.95), rgba(11, 15, 26, 0.98));
    border: 1px solid var(--brand-cyan-border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 194, 255, 0.08);
}

.menu-bottom-callout .callout-left h3 {
    font-size: 20px;
    color: var(--brand-cyan);
    margin-bottom: 8px;
}

.menu-bottom-callout .callout-left p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.menu-bottom-callout .callout-right {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* Responsive adjustments for Digital Menu */
@media (max-width: 991px) {
    .menu-bottom-callout {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    .menu-bottom-callout .callout-right {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .digital-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dish-photo-slot {
        height: 200px;
    }
    .menu-status-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .menu-category-tabs {
        gap: 8px;
    }
    .menu-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}


