/* ==========================================
   THE LEINSTER - CSS STYLES
   ========================================== */

/* Font Faces - Leinster Brand Fonts */
@font-face {
    font-family: 'Celtrick';
    src: url('../assets/fonts/celtrick.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Leinster Script';
    src: url('../assets/fonts/font2.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Leinster Serif';
    src: url('../assets/fonts/font3.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Brand Colors */
    --sage-primary: #5a6a53;
    --sage-light: #dadfd7;
    --sage-pale: #cfd8cd;
    --sage-dark: #3d4a37;
    --white: #ffffff;
    --off-white: #fafaf8;
    --guinness-black: #1a1a1a;
    --gold-accent: #c9a86c;

    /* Text Colors */
    --text-secondary: rgba(255, 255, 255, 0.7);

    /* New Enhancement Colors */
    --kaona-dark: #0d0d0d;
    --kaona-gold: #d4a846;
    --kaona-orange: #e85d04;
    --neon-green: #00ff88;
    --neon-pink: #ff006e;
    --industry-blue: #0077b6;

    /* Typography - Leinster Brand Fonts */
    --font-display: 'Celtrick', 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Leinster Script', 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Leinster Serif', 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
    --font-body: 'Palatino Linotype', Georgia, Palatino, 'Book Antiqua', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::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(--off-white);
    color: var(--guinness-black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   ACCESSIBILITY - SKIP LINK
   ========================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--guinness-black);
    color: var(--white);
    padding: 12px 24px;
    z-index: 100000;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Screen Reader Only - Hidden visually but accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-primary), var(--gold-accent));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all var(--transition-medium);
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
}

.navbar.scrolled {
    background-color: rgba(90, 106, 83, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height var(--transition-fast);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

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

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-primary) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.6) saturate(1.1);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Stronger vignette for text readability */
        radial-gradient(ellipse at center, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 26, 0.7) 100%),
        /* Warm pub lighting gradient */
        linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.3) 40%, rgba(26, 26, 26, 0.3) 60%, rgba(26, 26, 26, 0.7) 100%),
        /* Subtle warm tint */
        linear-gradient(180deg, rgba(201, 168, 108, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-logo {
    max-width: 250px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    margin-bottom: 0.5rem;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-welcome {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--gold-accent);
    letter-spacing: 1px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--sage-primary);
    color: var(--white);
    border-color: var(--sage-primary);
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 106, 83, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--sage-primary);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: var(--section-padding);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--sage-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Decorative pub-style underline */
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-title.light {
    color: var(--white);
}

.section-title.light::after {
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.section-subtitle {
    text-align: center;
    font-style: italic;
    font-family: 'Leinster Script', var(--font-heading);
    color: var(--sage-primary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* ==========================================
   COZY BACKGROUND PATTERNS
   ========================================== */
.cozy-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(201, 168, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(90, 106, 83, 0.03) 0%, transparent 50%);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background-color: var(--sage-light);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 168, 108, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(90, 106, 83, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235a6a53' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.about-content {
    padding-right: 2rem;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-tagline {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--sage-primary);
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--sage-primary);
    border-radius: 8px;
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu {
    background-color: var(--off-white);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.75rem 2rem;
    background: none;
    border: 2px solid var(--sage-primary);
    color: var(--sage-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all var(--transition-fast);
}

.menu-tab:hover,
.menu-tab.active {
    background-color: var(--sage-primary);
    color: var(--white);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--sage-primary);
    transition: height var(--transition-fast);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.menu-card:hover::before {
    height: 100%;
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--sage-dark);
}

.menu-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.menu-card .price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sage-primary);
}

.menu-card.highlight {
    background: linear-gradient(135deg, var(--sage-primary) 0%, var(--sage-dark) 100%);
    color: var(--white);
}

.menu-card.highlight h3,
.menu-card.highlight p,
.menu-card.highlight .price {
    color: var(--white);
}

.menu-cta {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
}

/* ==========================================
   GUINNESS / PERFECT PINT SECTION
   ========================================== */
.guinness {
    background: var(--guinness-black);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.guinness-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/guinness.jpg');
    background-size: cover;
    background-position: center;
}

.guinness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.85) 100%);
}

.guinness-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.guinness-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border-radius: 30px;
}

.guinness .section-title {
    margin-bottom: 2rem;
}

.guinness .section-title::after {
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.guinness-description {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.guinness-toast {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-top: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   SPLIT THE G SECTION
   ========================================== */
.split-g {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-pale) 100%);
}

.split-g-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.split-g-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.split-g-rewards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.reward {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-fast);
}

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

.reward.featured {
    background: var(--sage-primary);
    color: var(--white);
    transform: scale(1.1);
}

.reward.featured:hover {
    transform: scale(1.1) translateY(-5px);
}

.reward-percent {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.reward-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   RESERVATION SECTION
   ========================================== */
.reserve {
    background-color: var(--off-white);
}

.reservation-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.reservation-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--sage-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--sage-pale);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    border-color: var(--sage-primary);
}

.powered-by {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background-color: var(--sage-light);
}

/* Fix contrast for buttons on light contact section background */
.contact .btn-secondary {
    color: var(--guinness-black);
    border-color: var(--sage-primary);
}

.contact .btn-secondary:hover {
    background-color: var(--sage-primary);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.hours-table {
    margin: 2rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(90, 106, 83, 0.2);
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: #4a5944; /* Slightly darker sage for WCAG AA contrast - was var(--sage-primary) */
}

.happy-hour-badge {
    display: inline-block;
    background: var(--sage-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
}

.address {
    margin: 2rem 0;
    line-height: 1.8;
}

.address p {
    margin-bottom: 0.25rem;
}

.phone-number {
    margin-top: 1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-primary);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

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

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   SOCIAL STRIP
   ========================================== */
.social-strip {
    background-color: var(--sage-primary);
    padding: 2rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--white);
    color: var(--sage-primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--guinness-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.7;
    font-style: italic;
}

.footer-phone {
    margin-top: 1rem;
    opacity: 1 !important;
    font-style: normal !important;
}

.footer-phone a {
    color: var(--gold-accent);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-phone a:hover {
    color: var(--white);
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-accent);
}

.footer-newsletter p {
    opacity: 0.7;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--sage-primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--sage-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

/* ==========================================
   POPUP & MODALS
   ========================================== */
.popup-overlay,
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.popup-overlay.active,
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup,
.modal {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.popup-overlay.active .popup,
.modal-overlay.active .modal {
    transform: translateY(0);
}

.popup-close,
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color var(--transition-fast);
}

.popup-close:hover,
.modal-close:hover {
    color: var(--guinness-black);
}

.popup h3,
.modal h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--sage-primary);
}

.popup p,
.modal p {
    margin-bottom: 1.5rem;
    color: #666;
}

.popup-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--sage-pale);
    border-radius: 6px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.popup-form input:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    border-color: var(--sage-primary);
}

.popup-dismiss {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: color var(--transition-fast);
}

.popup-dismiss:hover {
    color: var(--sage-primary);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: var(--sage-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.modal-note {
    font-size: 0.9rem;
    font-style: italic;
}

#confirmationDetails {
    background: var(--sage-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

#confirmationDetails p {
    margin-bottom: 0.5rem;
    color: var(--guinness-black);
}

/* ==========================================
   ENHANCED EMAIL POPUP - Pub Style
   ========================================== */
.popup-email {
    max-width: 500px;
    background:
        linear-gradient(135deg, var(--guinness-black) 0%, #1f1f1f 100%);
    border: 4px solid var(--gold-accent);
    color: var(--white);
    position: relative;
    overflow: visible;
}

.popup-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    border-radius: 8px;
}

.popup-email .popup-close {
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.popup-email .popup-close:hover {
    color: var(--white);
}

.popup-email h3 {
    font-family: var(--font-display);
    color: var(--gold-accent);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-email p {
    color: rgba(255, 255, 255, 0.8);
}

.popup-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.popup-benefits li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-benefits li:last-child {
    border-bottom: none;
}

.popup-benefits li::before {
    content: "☘";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-size: 1.1rem;
}

.popup-email .popup-form {
    position: relative;
    z-index: 1;
}

.popup-email .popup-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 168, 108, 0.5);
    color: var(--white);
}

.popup-email .popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.popup-email .popup-form input:focus {
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(201, 168, 108, 0.2);
}

.popup-email .btn-primary {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8956a 100%);
    color: var(--guinness-black);
    font-weight: 700;
    border: none;
}

.popup-email .btn-primary:hover {
    background: linear-gradient(135deg, #d4b87a 0%, var(--gold-accent) 100%);
}

.popup-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.interest-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.interest-tag:hover {
    background: rgba(201, 168, 108, 0.2);
    border-color: var(--gold-accent);
}

.interest-tag input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--gold-accent);
}

.popup-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.popup-email .popup-dismiss {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.25rem;
}

.popup-email .popup-dismiss:hover {
    color: var(--gold-accent);
}

.popup-success {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.popup-success .success-icon,
.vip-success .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.popup-success h3 {
    color: var(--gold-accent);
}

.popup-success p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   INLINE CTAs - Pub Chalkboard Style
   ========================================== */
.inline-cta {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background:
        linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 3px solid #3d3d3d;
}

/* Chalkboard texture effect */
.inline-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    border-radius: 5px;
}

/* Corner decorations like a pub sign */
.inline-cta::after {
    content: '☘';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--guinness-black);
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
    color: var(--gold-accent);
    border-radius: 4px;
    border: 2px solid var(--gold-accent);
}

.inline-cta-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.inline-cta-industry {
    background: linear-gradient(135deg, var(--sage-dark) 0%, #2d3a28 100%);
    margin-top: 2rem;
}

.inline-cta-industry::after {
    content: '🌙';
}

.inline-cta-text {
    margin: 0;
    font-family: 'Leinster Script', var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.inline-cta-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.inline-cta-form input[type="email"] {
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold-accent);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    min-width: 240px;
    color: var(--white);
    transition: all var(--transition-fast);
}

.inline-cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.inline-cta-form input[type="email"]:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(201, 168, 108, 0.3);
}

.inline-cta-form .btn {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-success {
    color: var(--gold-accent);
    font-weight: 600;
    padding: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.form-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ==========================================
   VIP SECTION (REPLACES RESERVATIONS)
   ========================================== */
.vip-section {
    background:
        /* Wood grain texture overlay */
        linear-gradient(90deg, rgba(61, 74, 55, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(61, 74, 55, 0.03) 1px, transparent 1px),
        /* Warm pub lighting gradient */
        radial-gradient(ellipse at top, rgba(201, 168, 108, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--off-white) 0%, var(--sage-light) 50%, var(--off-white) 100%);
    background-size: 20px 20px, 20px 20px, 100% 100%, 100% 100%;
    position: relative;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--sage-primary), var(--gold-accent));
}

.vip-capture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vip-benefit {
    background:
        linear-gradient(135deg, var(--white) 0%, rgba(218, 223, 215, 0.5) 100%);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    border-left: 4px solid var(--gold-accent);
    position: relative;
    overflow: hidden;
}

.vip-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(201, 168, 108, 0.1) 50%);
}

.vip-benefit:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-left-color: var(--sage-primary);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.vip-benefit h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}

.vip-benefit p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.vip-form-container {
    background:
        linear-gradient(135deg, var(--guinness-black) 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    border: 3px solid var(--gold-accent);
}

.vip-form-container::before {
    content: '🍀 VIP 🍀';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--guinness-black);
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.vip-form-container h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.vip-form .form-group {
    margin-bottom: 0;
}

.vip-form input[type="text"],
.vip-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 168, 108, 0.5);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: all var(--transition-fast);
}

.vip-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vip-form input:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(201, 168, 108, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.checkbox-label:hover {
    color: var(--white);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--gold-accent);
    width: 18px;
    height: 18px;
}

.vip-form .btn-full {
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8956a 100%);
    border: none;
    color: var(--guinness-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vip-form .btn-full:hover {
    background: linear-gradient(135deg, #d4b87a 0%, var(--gold-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.4);
}

.vip-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.25rem;
    font-style: italic;
}

.vip-success {
    text-align: center;
    padding: 2rem 1rem;
}

.vip-success h3 {
    color: var(--gold-accent);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.vip-success p {
    color: rgba(255, 255, 255, 0.8);
}

/* VIP Section Responsive */
@media (max-width: 768px) {
    .vip-capture {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .vip-form-container {
        padding: 2rem 1.5rem;
    }

    .popup-interests {
        justify-content: center;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .inline-cta-form {
        width: 100%;
    }

    .inline-cta-form input[type="email"] {
        width: 100%;
        min-width: unset;
    }

    /* Mobile popup fixes - ensure popup fits in viewport and is closable */
    .popup,
    .modal {
        max-height: 90vh;
        overflow-y: auto;
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .popup-close,
    .modal-close {
        min-width: 44px;
        min-height: 44px;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0.5rem;
        right: 0.5rem;
    }

    .popup-email .popup-content {
        max-height: calc(90vh - 10rem);
        overflow-y: auto;
    }

    .popup-dismiss {
        padding: 1rem;
        margin-top: 0.75rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* Reveal on scroll - only hide if JS is enabled */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.js-enabled .reveal.active,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback - show content if JS doesn't load */
.reveal {
    opacity: 1;
    transform: none;
}

/* ==========================================
   KAONA ROOM SECTION
   ========================================== */
.kaona-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d0d0d; /* Fallback dark background for accessibility */
}

.kaona-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/kaona-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.kaona-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.kaona-section .container {
    position: relative;
    z-index: 3;
}

.kaona-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 0;
}

.kaona-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 168, 70, 0.3));
}

.kaona-tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white); /* White for maximum contrast */
    text-shadow: 0 2px 8px rgba(0,0,0,0.8); /* Shadow for legibility on any background */
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.kaona-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-kaona {
    display: inline-block;
    background: rgba(212, 168, 70, 0.9); /* Semi-transparent gold background */
    border: 2px solid #d4a846;
    color: #1a1a1a; /* Dark text for contrast on gold button */
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-kaona:hover {
    background: var(--kaona-gold);
    color: var(--kaona-dark);
    box-shadow: 0 0 30px rgba(212, 168, 70, 0.4);
}

/* ==========================================
   IPHONE MOCKUP FOR LEADERBOARD
   ========================================== */
.iphone-mockup {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    perspective: 1000px;
}

.iphone-frame {
    width: 320px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
}

.iphone-frame:hover {
    transform: rotateX(0deg) scale(1.02);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0d0d0d;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.iphone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #2a2a2a;
    border-radius: 3px;
}

.iphone-screen {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 35px;
    overflow: hidden;
    padding-top: 35px;
}

/* ==========================================
   LEADERBOARD (Split the G Enhancement)
   ========================================== */
.leaderboard {
    background: transparent;
    border-radius: 0;
    padding: 1.5rem;
    margin: 0;
    max-width: none;
}

.leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trophy-icon {
    font-size: 1.5rem;
}

.leaderboard-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin: 0;
}

.leaderboard-entries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.leaderboard-entry:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.leaderboard-entry.gold {
    border-left: 4px solid #ffd700;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
}

.leaderboard-entry.silver {
    border-left: 4px solid #c0c0c0;
}

.leaderboard-entry.bronze {
    border-left: 4px solid #cd7f32;
}

.entry-rank {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--sage-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.gold .entry-rank { background: linear-gradient(135deg, #ffd700, #daa520); }
.silver .entry-rank { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); }
.bronze .entry-rank { background: linear-gradient(135deg, #cd7f32, #b87333); }

.entry-info {
    flex: 1;
    text-align: left;
}

.entry-name {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.entry-quote {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.entry-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.score-grade {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-weight: 700;
    line-height: 1;
}

.score-percent {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.leaderboard-cta {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-style: italic;
}

/* ==========================================
   LEINSTER LEAGUE SECTION
   ========================================== */
.league {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-pale) 50%, var(--sage-light) 100%);
    position: relative;
    overflow: hidden;
}

.league-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.league-badge {
    display: flex;
    justify-content: center;
}

.badge-shield {
    width: 200px;
    height: 240px;
    background: linear-gradient(180deg, var(--sage-primary) 0%, var(--sage-dark) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.badge-shield::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: linear-gradient(180deg, var(--sage-dark) 0%, var(--guinness-black) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.badge-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
}

.badge-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.league-info {
    text-align: left;
}

.league-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--sage-dark);
    margin-bottom: 2rem;
}

.league-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.league-step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.league-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.league-step h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}

.league-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ==========================================
   SPORTS SCHEDULE SECTION
   ========================================== */
.sports-schedule {
    background: var(--off-white);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.match-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.match-card:hover {
    border-color: var(--sage-primary);
    transform: translateY(-3px);
}

.match-league {
    margin-bottom: 1rem;
}

.league-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.league-badge.premier-league {
    background: linear-gradient(135deg, #3d195b, #e90052);
    color: white;
}

.league-badge.nfl {
    background: linear-gradient(135deg, #013369, #d50a0a);
    color: white;
}

/* Additional League Badges */
.league-badge.laliga {
    background: linear-gradient(135deg, #ee8707, #e73d3e);
    color: white;
}

.league-badge.seriea {
    background: linear-gradient(135deg, #008fd7, #171d8d);
    color: white;
}

.league-badge.ucl {
    background: linear-gradient(135deg, #0d1d5c, #00a3e0);
    color: white;
}

.league-badge.uel {
    background: linear-gradient(135deg, #ff6900, #000000);
    color: white;
}

.league-badge.nba {
    background: linear-gradient(135deg, #1d428a, #c8102e);
    color: white;
}

.league-badge.nhl {
    background: linear-gradient(135deg, #000000, #a2aaad);
    color: white;
}

.league-badge.bundesliga {
    background: linear-gradient(135deg, #d20515, #000000);
    color: white;
}

.league-badge.ligue1 {
    background: linear-gradient(135deg, #091c3e, #daff00);
    color: white;
}

.league-badge.mls {
    background: linear-gradient(135deg, #0a174e, #e41837);
    color: white;
}

.league-badge.generic {
    background: linear-gradient(135deg, var(--sage-primary), var(--sage-dark));
    color: white;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

/* Team logo image */
.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Fallback styling when image fails to load */
.team-logo .logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Team Colors */
.team-logo.liverpool { background: linear-gradient(135deg, #c8102e, #7a0a1c); color: #fff; }
.team-logo.mancity { background: linear-gradient(135deg, #6cabdd, #1c2c5b); color: #fff; }
.team-logo.arsenal { background: linear-gradient(135deg, #ef0107, #b30006); color: #fff; }
.team-logo.chelsea { background: linear-gradient(135deg, #034694, #022b5a); color: #fff; }
.team-logo.dolphins { background: linear-gradient(135deg, #008e97, #fc4c02); color: #fff; }
.team-logo.bills { background: linear-gradient(135deg, #00338d, #c60c30); color: #fff; }

/* Additional EPL Teams */
.team-logo.manutd { background: linear-gradient(135deg, #da291c, #000000); color: #fff; }
.team-logo.spurs { background: linear-gradient(135deg, #132257, #ffffff); color: #132257; }
.team-logo.newcastle { background: linear-gradient(135deg, #241f20, #ffffff); color: #fff; }
.team-logo.villa { background: linear-gradient(135deg, #670e36, #95bfe5); color: #fff; }
.team-logo.westham { background: linear-gradient(135deg, #7a263a, #1bb1e7); color: #fff; }
.team-logo.brighton { background: linear-gradient(135deg, #0057b8, #ffcd00); color: #fff; }
.team-logo.everton { background: linear-gradient(135deg, #003399, #ffffff); color: #fff; }
.team-logo.palace { background: linear-gradient(135deg, #1b458f, #c4122e); color: #fff; }
.team-logo.fulham { background: linear-gradient(135deg, #ffffff, #000000); color: #000; }
.team-logo.brentford { background: linear-gradient(135deg, #e30613, #fbb800); color: #fff; }
.team-logo.wolves { background: linear-gradient(135deg, #fdb913, #231f20); color: #000; }
.team-logo.bournemouth { background: linear-gradient(135deg, #da291c, #000000); color: #fff; }
.team-logo.forest { background: linear-gradient(135deg, #dd0000, #ffffff); color: #fff; }
.team-logo.luton { background: linear-gradient(135deg, #f78f1e, #002d62); color: #fff; }
.team-logo.burnley { background: linear-gradient(135deg, #6c1d45, #99d6ea); color: #fff; }
.team-logo.sheffield { background: linear-gradient(135deg, #ee2737, #000000); color: #fff; }
.team-logo.leeds { background: linear-gradient(135deg, #ffffff, #1d428a); color: #1d428a; }
.team-logo.leicester { background: linear-gradient(135deg, #003090, #fdbe11); color: #fff; }
.team-logo.southampton { background: linear-gradient(135deg, #d71920, #130c0e); color: #fff; }
.team-logo.ipswich { background: linear-gradient(135deg, #0033a0, #ffffff); color: #fff; }

/* La Liga Teams */
.team-logo.barcelona { background: linear-gradient(135deg, #a50044, #004d98); color: #fff; }
.team-logo.realmadrid { background: linear-gradient(135deg, #ffffff, #00529f); color: #00529f; }
.team-logo.atletico { background: linear-gradient(135deg, #cb3524, #272e61); color: #fff; }
.team-logo.sevilla { background: linear-gradient(135deg, #d4021d, #ffffff); color: #fff; }
.team-logo.sociedad { background: linear-gradient(135deg, #0067b1, #ffffff); color: #fff; }
.team-logo.villarreal { background: linear-gradient(135deg, #ffe667, #005187); color: #000; }
.team-logo.betis { background: linear-gradient(135deg, #00954c, #ffffff); color: #fff; }
.team-logo.bilbao { background: linear-gradient(135deg, #ee2523, #ffffff); color: #fff; }
.team-logo.valencia { background: linear-gradient(135deg, #ffffff, #ff7f00); color: #000; }
.team-logo.oviedo { background: linear-gradient(135deg, #004a99, #ffffff); color: #fff; }
.team-logo.girona { background: linear-gradient(135deg, #cd2534, #ffffff); color: #fff; }

/* Serie A Teams */
.team-logo.inter { background: linear-gradient(135deg, #010e80, #000000); color: #fff; }
.team-logo.milan { background: linear-gradient(135deg, #fb090b, #000000); color: #fff; }
.team-logo.juventus { background: linear-gradient(135deg, #000000, #ffffff); color: #fff; }
.team-logo.napoli { background: linear-gradient(135deg, #12a0d7, #ffffff); color: #fff; }
.team-logo.roma { background: linear-gradient(135deg, #8e1f2f, #f0bc42); color: #fff; }
.team-logo.lazio { background: linear-gradient(135deg, #87d8f7, #ffffff); color: #000; }
.team-logo.atalanta { background: linear-gradient(135deg, #1e71b8, #000000); color: #fff; }
.team-logo.fiorentina { background: linear-gradient(135deg, #482a72, #ffffff); color: #fff; }
.team-logo.genoa { background: linear-gradient(135deg, #a41e22, #00529f); color: #fff; }

/* NFL Teams */
.team-logo.chiefs { background: linear-gradient(135deg, #e31837, #ffb81c); color: #fff; }
.team-logo.eagles { background: linear-gradient(135deg, #004c54, #a5acaf); color: #fff; }
.team-logo.cowboys { background: linear-gradient(135deg, #003594, #869397); color: #fff; }
.team-logo.patriots { background: linear-gradient(135deg, #002244, #c60c30); color: #fff; }
.team-logo.jets { background: linear-gradient(135deg, #125740, #ffffff); color: #fff; }
.team-logo.chargers { background: linear-gradient(135deg, #0080c6, #ffc20e); color: #fff; }
.team-logo.raiders { background: linear-gradient(135deg, #000000, #a5acaf); color: #fff; }
.team-logo.broncos { background: linear-gradient(135deg, #fb4f14, #002244); color: #fff; }
.team-logo.ravens { background: linear-gradient(135deg, #241773, #000000); color: #fff; }
.team-logo.bengals { background: linear-gradient(135deg, #fb4f14, #000000); color: #fff; }
.team-logo.steelers { background: linear-gradient(135deg, #ffb612, #000000); color: #000; }
.team-logo.browns { background: linear-gradient(135deg, #311d00, #ff3c00); color: #fff; }
.team-logo.texans { background: linear-gradient(135deg, #03202f, #a71930); color: #fff; }
.team-logo.colts { background: linear-gradient(135deg, #002c5f, #a2aaad); color: #fff; }
.team-logo.jaguars { background: linear-gradient(135deg, #006778, #d7a22a); color: #fff; }
.team-logo.titans { background: linear-gradient(135deg, #0c2340, #4b92db); color: #fff; }
.team-logo.giants { background: linear-gradient(135deg, #0b2265, #a71930); color: #fff; }
.team-logo.commanders { background: linear-gradient(135deg, #5a1414, #ffb612); color: #fff; }
.team-logo.packers { background: linear-gradient(135deg, #203731, #ffb612); color: #fff; }
.team-logo.vikings { background: linear-gradient(135deg, #4f2683, #ffc62f); color: #fff; }
.team-logo.bears { background: linear-gradient(135deg, #0b162a, #c83803); color: #fff; }
.team-logo.lions { background: linear-gradient(135deg, #0076b6, #b0b7bc); color: #fff; }
.team-logo.49ers { background: linear-gradient(135deg, #aa0000, #b3995d); color: #fff; }
.team-logo.seahawks { background: linear-gradient(135deg, #002244, #69be28); color: #fff; }
.team-logo.rams { background: linear-gradient(135deg, #003594, #ffd100); color: #fff; }
.team-logo.cardinals { background: linear-gradient(135deg, #97233f, #000000); color: #fff; }
.team-logo.bucs { background: linear-gradient(135deg, #d50a0a, #34302b); color: #fff; }
.team-logo.saints { background: linear-gradient(135deg, #d3bc8d, #000000); color: #000; }
.team-logo.falcons { background: linear-gradient(135deg, #a71930, #000000); color: #fff; }
.team-logo.panthers-nfl { background: linear-gradient(135deg, #0085ca, #000000); color: #fff; }

/* NBA Teams */
.team-logo.heat { background: linear-gradient(135deg, #98002e, #f9a01b); color: #fff; }
.team-logo.magic { background: linear-gradient(135deg, #0077c0, #000000); color: #fff; }
.team-logo.suns { background: linear-gradient(135deg, #1d1160, #e56020); color: #fff; }
.team-logo.bulls { background: linear-gradient(135deg, #ce1141, #000000); color: #fff; }
.team-logo.lakers { background: linear-gradient(135deg, #552583, #fdb927); color: #fff; }
.team-logo.celtics { background: linear-gradient(135deg, #007a33, #ba9653); color: #fff; }
.team-logo.warriors { background: linear-gradient(135deg, #1d428a, #ffc72c); color: #fff; }
.team-logo.bucks { background: linear-gradient(135deg, #00471b, #eee1c6); color: #fff; }
.team-logo.nuggets { background: linear-gradient(135deg, #0e2240, #fec524); color: #fff; }
.team-logo.76ers { background: linear-gradient(135deg, #006bb6, #ed174c); color: #fff; }
.team-logo.nets { background: linear-gradient(135deg, #000000, #ffffff); color: #fff; }
.team-logo.knicks { background: linear-gradient(135deg, #006bb6, #f58426); color: #fff; }
.team-logo.cavs { background: linear-gradient(135deg, #860038, #fdbb30); color: #fff; }
.team-logo.raptors { background: linear-gradient(135deg, #ce1141, #000000); color: #fff; }
.team-logo.pacers { background: linear-gradient(135deg, #002d62, #fdbb30); color: #fff; }
.team-logo.hawks { background: linear-gradient(135deg, #e03a3e, #c1d32f); color: #fff; }
.team-logo.hornets { background: linear-gradient(135deg, #1d1160, #00788c); color: #fff; }
.team-logo.wizards { background: linear-gradient(135deg, #002b5c, #e31837); color: #fff; }
.team-logo.pistons { background: linear-gradient(135deg, #c8102e, #1d42ba); color: #fff; }
.team-logo.grizzlies { background: linear-gradient(135deg, #5d76a9, #12173f); color: #fff; }
.team-logo.pelicans { background: linear-gradient(135deg, #0c2340, #c8102e); color: #fff; }
.team-logo.mavs { background: linear-gradient(135deg, #00538c, #b8c4ca); color: #fff; }
.team-logo.rockets { background: linear-gradient(135deg, #ce1141, #000000); color: #fff; }
.team-logo.spurs-nba { background: linear-gradient(135deg, #c4ced4, #000000); color: #000; }
.team-logo.thunder { background: linear-gradient(135deg, #007ac1, #ef3b24); color: #fff; }
.team-logo.wolves-nba { background: linear-gradient(135deg, #0c2340, #236192); color: #fff; }
.team-logo.jazz { background: linear-gradient(135deg, #002b5c, #00471b); color: #fff; }
.team-logo.blazers { background: linear-gradient(135deg, #e03a3e, #000000); color: #fff; }
.team-logo.clippers { background: linear-gradient(135deg, #c8102e, #1d428a); color: #fff; }
.team-logo.kings { background: linear-gradient(135deg, #5a2d81, #63727a); color: #fff; }

/* NHL Teams */
.team-logo.panthers { background: linear-gradient(135deg, #041e42, #c8102e); color: #fff; }
.team-logo.lightning { background: linear-gradient(135deg, #002868, #ffffff); color: #fff; }
.team-logo.blackhawks { background: linear-gradient(135deg, #cf0a2c, #000000); color: #fff; }
.team-logo.bruins { background: linear-gradient(135deg, #fcb514, #000000); color: #000; }
.team-logo.rangers { background: linear-gradient(135deg, #0038a8, #ce1126); color: #fff; }
.team-logo.islanders { background: linear-gradient(135deg, #00539b, #f47d30); color: #fff; }
.team-logo.penguins { background: linear-gradient(135deg, #000000, #fcb514); color: #fcb514; }
.team-logo.capitals { background: linear-gradient(135deg, #c8102e, #041e42); color: #fff; }
.team-logo.flyers { background: linear-gradient(135deg, #f74902, #000000); color: #fff; }
.team-logo.hurricanes { background: linear-gradient(135deg, #cc0000, #000000); color: #fff; }
.team-logo.devils { background: linear-gradient(135deg, #ce1126, #000000); color: #fff; }
.team-logo.bluejackets { background: linear-gradient(135deg, #002654, #ce1126); color: #fff; }
.team-logo.redwings { background: linear-gradient(135deg, #ce1126, #ffffff); color: #fff; }
.team-logo.leafs { background: linear-gradient(135deg, #003e7e, #ffffff); color: #fff; }
.team-logo.canadiens { background: linear-gradient(135deg, #af1e2d, #192168); color: #fff; }
.team-logo.senators { background: linear-gradient(135deg, #c52032, #c2912c); color: #fff; }
.team-logo.sabres { background: linear-gradient(135deg, #002654, #fcb514); color: #fff; }
.team-logo.avalanche { background: linear-gradient(135deg, #6f263d, #236192); color: #fff; }
.team-logo.jets-nhl { background: linear-gradient(135deg, #041e42, #004c97); color: #fff; }
.team-logo.wild { background: linear-gradient(135deg, #154734, #a6192e); color: #fff; }
.team-logo.blues { background: linear-gradient(135deg, #002f87, #fcb514); color: #fff; }
.team-logo.predators { background: linear-gradient(135deg, #ffb81c, #041e42); color: #041e42; }
.team-logo.stars { background: linear-gradient(135deg, #006847, #8f8f8c); color: #fff; }
.team-logo.knights { background: linear-gradient(135deg, #b4975a, #333f42); color: #fff; }
.team-logo.oilers { background: linear-gradient(135deg, #041e42, #fc4c02); color: #fff; }
.team-logo.flames { background: linear-gradient(135deg, #c8102e, #f1be48); color: #fff; }
.team-logo.canucks { background: linear-gradient(135deg, #00205b, #00843d); color: #fff; }
.team-logo.kraken { background: linear-gradient(135deg, #001628, #99d9d9); color: #fff; }
.team-logo.kings-nhl { background: linear-gradient(135deg, #111111, #a2aaad); color: #fff; }
.team-logo.ducks { background: linear-gradient(135deg, #f47a38, #b9975b); color: #fff; }
.team-logo.sharks { background: linear-gradient(135deg, #006d75, #ea7200); color: #fff; }
.team-logo.coyotes { background: linear-gradient(135deg, #8c2633, #e2d6b5); color: #fff; }
.team-logo.mammoth { background: linear-gradient(135deg, #862633, #000000); color: #fff; }

/* Generic/Fallback Team Logo */
.team-logo.generic { background: linear-gradient(135deg, var(--sage-primary), var(--sage-dark)); color: #fff; }

.team-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--guinness-black);
}

.match-vs {
    color: #8b6914; /* Darker gold for better contrast - was var(--gold-accent) */
    font-weight: bold;
    font-size: 0.9rem;
}

.match-time {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.match-day {
    font-size: 0.85rem;
    color: #666;
}

.match-hour {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-primary);
}

.sports-note {
    text-align: center;
    font-style: italic;
    color: #666;
}

/* Sports Loading/Error/Empty States */
.matches-loading {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.match-card-skeleton {
    background: var(--white);
    border-radius: 12px;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.match-card-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(90, 106, 83, 0.08) 50%,
        transparent 100%
    );
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.matches-error {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px dashed var(--sage-light);
    grid-column: 1 / -1;
}

.matches-error p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

.matches-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 12px;
    grid-column: 1 / -1;
}

.matches-empty p {
    color: #666;
    font-size: 1.1rem;
}

.matches-empty .sports-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Today/Tomorrow Highlight */
.match-day.today {
    color: var(--sage-primary);
    font-weight: 700;
}

.match-day.tomorrow {
    color: #8b6914; /* Darker gold for better contrast - was var(--gold-accent) */
    font-weight: 600;
}

/* Generic Event Card (non-match events) */
.match-card.generic-event {
    background: linear-gradient(135deg, var(--white) 0%, var(--sage-light) 100%);
}

.match-event-title {
    padding: 1rem 0;
}

.match-event-title h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--guinness-black);
    margin: 0;
    line-height: 1.4;
}

/* Informational Badge */
.match-card.informational .league-badge::after {
    content: ' - TBD';
    font-weight: 400;
}

/* ==========================================
   INDUSTRY NIGHT SECTION
   ========================================== */
.industry-night {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.industry-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
}

.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background:
        linear-gradient(to bottom, transparent 0%, #0a0a0a 100%),
        repeating-linear-gradient(90deg,
            #1a1a1a 0px, #1a1a1a 30px,
            #222 30px, #222 35px,
            #1a1a1a 35px, #1a1a1a 80px,
            #2a2a2a 80px, #2a2a2a 85px,
            #1a1a1a 85px, #1a1a1a 120px
        );
}

.city-lights {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 60px;
    background-image:
        radial-gradient(2px 2px at 10% 30%, #ffff00 50%, transparent 50%),
        radial-gradient(2px 2px at 25% 50%, #ff6b6b 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 20%, #4ecdc4 50%, transparent 50%),
        radial-gradient(2px 2px at 55% 60%, #ffe66d 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 35%, #ff6b6b 50%, transparent 50%),
        radial-gradient(2px 2px at 85% 45%, #4ecdc4 50%, transparent 50%),
        radial-gradient(2px 2px at 95% 25%, #ffff00 50%, transparent 50%);
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.industry-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.industry-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.6); }
}

.industry-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.industry-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.open-late {
    margin-bottom: 3rem;
}

.open-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.open-time {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    color: var(--neon-green);
    text-shadow:
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green),
        0 0 60px rgba(0, 255, 136, 0.5);
    line-height: 1;
}

.am-pulse {
    animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.open-days {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.industry-perks {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.perk:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.perk-icon {
    font-size: 1.5rem;
}

.perk-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.industry-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .about-grid,
    .guinness-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
    }

    .guinness-content {
        text-align: center;
    }

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

    .footer-logo {
        margin: 0 auto 1rem;
    }

    /* New sections responsive */
    .league-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .league-badge {
        order: -1;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
    }

    .league-info {
        text-align: center;
    }

    .league-steps {
        grid-template-columns: 1fr;
    }

    .league-step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--sage-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-medium);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .split-g-rewards {
        flex-direction: column;
        align-items: center;
    }

    .reward.featured {
        transform: scale(1);
        order: -1;
    }

    .reward.featured:hover {
        transform: translateY(-5px);
    }

    .hero-cta {
        flex-direction: column;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }

    /* New sections responsive - 768px */
    .kaona-logo {
        max-width: 220px;
    }

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

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

    .industry-perks {
        flex-direction: column;
        align-items: center;
    }

    .perk {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .leaderboard {
        padding: 1.5rem;
    }

    .sports-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }

    .reservation-form-container {
        padding: 2rem 1.5rem;
    }

    .popup,
    .modal {
        padding: 1.5rem;
        max-height: 85vh;
    }

    .popup-icon {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }

    .popup-email h3 {
        font-size: 1.5rem;
    }

    .popup-benefits li {
        font-size: 0.9rem;
        padding: 0.4rem 0 0.4rem 1.5rem;
    }

    .popup-interests {
        gap: 0.4rem;
    }

    .interest-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    /* New sections responsive - 480px */
    .kaona-logo {
        max-width: 180px;
    }

    .kaona-content {
        padding: 2rem 0;
    }

    .badge-shield {
        width: 150px;
        height: 180px;
        margin: 0 auto;
    }

    .badge-icon {
        font-size: 2.5rem;
    }

    .league-step {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-icon {
        font-size: 2rem;
        margin: 0 auto 1rem;
    }

    .match-card {
        padding: 1rem;
    }

    .match-teams {
        flex-direction: column;
        gap: 0.5rem;
    }

    .match-vs {
        margin: 0;
    }

    .leaderboard-entry {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .entry-info {
        text-align: center;
    }

    .industry-content {
        padding: 0 1rem;
    }

    .open-time {
        font-size: 4rem;
    }

    .perk {
        padding: 0.75rem 1rem;
    }
}

/* ==========================================
   OPEN NOW INDICATOR
   ========================================== */
.open-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    margin-left: 1.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.open-indicator.is-open {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.open-indicator.is-closed {
    background: rgba(255, 100, 100, 0.15);
    color: #ff6464;
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

.is-open .indicator-dot {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.is-closed .indicator-dot {
    background: #ff6464;
    box-shadow: 0 0 10px #ff6464;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

@media (max-width: 992px) {
    .open-indicator {
        margin-left: auto;
        margin-right: 1rem;
        order: 1;
    }

    .nav-toggle {
        order: 2;
    }
}

@media (max-width: 768px) {
    .open-indicator {
        display: none;
    }
}

/* ==========================================
   MICRO-INTERACTIONS & POLISH
   ========================================== */

/* Button Pour Effect */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: currentColor;
    opacity: 0.15;
    transition: height 0.4s ease-out;
    z-index: -1;
}

.btn:hover::before {
    height: 100%;
}

.btn-primary::before {
    background: var(--white);
}

.btn-secondary::before {
    background: var(--sage-primary);
}

/* Nav Link Underline Animation */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Form Input Focus Glow */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    border-color: var(--sage-primary);
    box-shadow: 0 0 0 3px rgba(90, 106, 83, 0.15), 0 0 15px rgba(90, 106, 83, 0.1);
}

/* Menu Card 3D Tilt */
.menu-item {
    transition: all 0.3s ease-out;
    transform-style: preserve-3d;
}

.menu-item:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Reward Card Glow */
.reward {
    transition: all 0.3s ease-out;
}

.reward:hover {
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.2);
}

/* Match Card Hover */
.match-card {
    transition: all 0.3s ease-out;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* League Step Hover */
.league-step {
    transition: all 0.3s ease-out;
}

.league-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.league-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--sage-primary);
    color: var(--white);
}

/* Scroll Progress Enhancement */
.scroll-progress {
    background: linear-gradient(90deg, var(--sage-primary), var(--gold-accent));
    box-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

/* Smooth Page Load - subtle */

/* Grid items show naturally - no staggered animation */

/* Cursor Interactions */
.btn,
.nav-menu a,
.menu-item,
.reward,
.match-card,
.league-step,
.leaderboard-entry {
    cursor: pointer;
}

/* Focus States for Accessibility */
.btn:focus-visible,
.nav-menu a:focus-visible,
.menu-tab:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* =====================
   MenuTap Integration Styles
   ===================== */

/* Menu Loading State */
.menu-loading {
    padding: 2rem 0;
}

.menu-loading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-card-skeleton {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.05) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 12px;
    height: 140px;
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Menu Error State */
.menu-error {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    margin: 1rem 0;
}

.menu-error p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Sold Out Badge */
.sold-out-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sold Out Menu Card */
.menu-card.sold-out {
    position: relative;
    opacity: 0.6;
}

.menu-card.sold-out::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.1) 10px,
        rgba(0,0,0,0.1) 20px
    );
    pointer-events: none;
    border-radius: inherit;
}

/* Menu Card Image */
.menu-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* Menu CTA Buttons */
.menu-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.menu-cta-buttons .btn {
    min-width: 160px;
}

/* Make Order Online button more visible */
.menu-cta-buttons .btn-secondary {
    background-color: var(--gold-accent);
    color: var(--guinness-black);
    border-color: var(--gold-accent);
    font-weight: 600;
}

.menu-cta-buttons .btn-secondary:hover {
    background-color: #d4b87a;
    border-color: #d4b87a;
    color: var(--guinness-black);
}

/* Menu Card with Image Layout */
.menu-card:has(.menu-card-image) {
    padding-top: 0.75rem;
}

/* =====================
   Full Menu Page Styles
   ===================== */

.menu-page {
    padding-top: 80px;
    min-height: 100vh;
    background-color: var(--guinness-black);
}

.menu-hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.85) 100%
    ), url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 3px solid var(--gold-accent);
}

.menu-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--guinness-black), transparent);
    pointer-events: none;
}

.menu-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold-accent);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.menu-hero p {
    font-family: var(--font-heading);
    color: var(--sage-light);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-style: italic;
}

/* Menu Content Area */
.menu-page #menuContent {
    background-color: var(--guinness-black);
    padding-bottom: 4rem;
}

/* Category Sections */
.menu-category {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
}

.menu-category:last-child {
    border-bottom: none;
}

.menu-category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.menu-category-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.menu-category-header p {
    font-family: var(--font-body);
    color: var(--sage-light);
    font-style: italic;
}

/* Full Menu Grid */
.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Menu Page Card */
.menu-page .menu-card {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.15), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-medium);
    position: relative;
}

.menu-page .menu-card:hover {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.25), rgba(0, 0, 0, 0.4));
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.menu-page .menu-card h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.menu-page .menu-card p {
    font-family: var(--font-body);
    color: var(--sage-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

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

/* Price with Sizes */
.price-sizes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.price-size {
    font-size: 0.9rem;
    color: var(--gold-accent);
}

.price-size .size-label {
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

/* Menu Search */
.menu-search {
    max-width: 400px;
    margin: 2rem auto;
    position: relative;
}

.menu-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
}

.menu-search input:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
    border-color: var(--gold-accent);
    background: rgba(255,255,255,0.08);
}

.menu-search input::placeholder {
    color: var(--text-secondary);
}

.menu-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.breadcrumb span {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: var(--white);
}

/* ==========================================
   SUBPAGE STYLES (sports, happy-hour, about, late-night, split-the-g)
   ========================================== */

/* Shared subpage body class — dark theme overrides */
.sports-page,
.happy-hour-page,
.about-page,
.late-night-page,
.split-the-g-page,
.private-events-page {
    padding-top: 80px;
    min-height: 100vh;
    background-color: var(--guinness-black);
    color: var(--sage-light);
}

/* Override all inherited light-theme text colors for dark subpages */
.sports-page strong,
.happy-hour-page strong,
.about-page strong,
.late-night-page strong,
.split-the-g-page strong,
.private-events-page strong {
    color: var(--white);
}

.sports-page em,
.happy-hour-page em,
.about-page em,
.late-night-page em,
.split-the-g-page em,
.private-events-page em {
    color: var(--sage-light);
}

/* Hours table on dark background */
.about-page .hours-row {
    border-bottom-color: rgba(201, 168, 108, 0.15);
}

.about-page .hours-row .day {
    color: var(--white);
    font-weight: 600;
}

.about-page .hours-row .time {
    color: var(--sage-light);
}

/* Address on dark background */
.about-page .address p {
    color: var(--sage-light);
}

/* Buttons on dark subpages */
.sports-page .btn-secondary,
.happy-hour-page .btn-secondary,
.about-page .btn-secondary,
.late-night-page .btn-secondary,
.split-the-g-page .btn-secondary,
.private-events-page .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.sports-page .btn-secondary:hover,
.happy-hour-page .btn-secondary:hover,
.about-page .btn-secondary:hover,
.late-night-page .btn-secondary:hover,
.split-the-g-page .btn-secondary:hover,
.private-events-page .btn-secondary:hover {
    background-color: var(--white);
    color: var(--guinness-black);
}

/* Section subtitle on dark pages (used in sports.html) */
.sports-page .section-subtitle,
.happy-hour-page .section-subtitle,
.about-page .section-subtitle,
.late-night-page .section-subtitle,
.split-the-g-page .section-subtitle,
.private-events-page .section-subtitle {
    color: var(--sage-light);
}

/* Subpage CTA text color */
.subpage-cta p {
    color: var(--sage-light);
}

/* Contact address on dark pages */
.contact-address {
    margin-bottom: 2rem;
}

.contact-address a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-address a:hover {
    color: var(--white);
}

.contact-phone a {
    font-size: 1.15rem;
}

.contact-address .contact-phone {
    margin-top: 1rem;
}

.contact-directions-btn {
    margin-bottom: 2rem;
}

/* Map container on dark pages */
.about-page .map-container {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

/* Sports note text on dark subpages */
.sports-page .sports-note {
    color: var(--sage-light);
}

/* Footer social links (subpage footer pattern) */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--white);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

/* Happy hour badge spacing on subpages */
.about-page .happy-hour-badge {
    margin-top: 1.5rem;
}

/* Hours table max-width on subpages */
.about-page .hours-table {
    max-width: 400px;
}

/* Subpage hero (reuses .menu-hero base) */
.subpage-hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.85) 100%
    ), url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 3px solid var(--gold-accent);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--guinness-black), transparent);
    pointer-events: none;
}

.subpage-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4rem);
    color: var(--gold-accent);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.subpage-hero p {
    font-family: var(--font-heading);
    color: var(--sage-light);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-style: italic;
}

/* Subpage content sections */
.subpage-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.subpage-section:last-of-type {
    border-bottom: none;
}

.subpage-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.subpage-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.subpage-section p {
    color: var(--sage-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 800px;
}

.subpage-section a:not(.btn) {
    color: var(--gold-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.subpage-section a:not(.btn):hover {
    color: var(--white);
}

/* Sports page intro on index */
.sports-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.sports-intro p {
    color: var(--sage-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.sports-intro a {
    color: var(--gold-accent);
}

.sports-noscript p {
    color: var(--sage-light);
    text-align: center;
    padding: 2rem;
    background: rgba(90, 106, 83, 0.15);
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* League grid for sports page */
.league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.league-card {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.15), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
}

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

.league-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.league-card p {
    color: var(--sage-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Happy hour specials table */
.specials-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.specials-table th,
.specials-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.specials-table th {
    font-family: var(--font-heading);
    color: var(--gold-accent);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.specials-table td {
    color: var(--sage-light);
    font-size: 1rem;
}

.specials-table tr:hover td {
    background: rgba(90, 106, 83, 0.1);
}

/* Whiskey collection grid */
.whiskey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.whiskey-card {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.15), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.whiskey-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-3px);
}

.whiskey-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.whiskey-card p {
    color: var(--sage-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* How-to steps for Split the G */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    counter-reset: step-counter;
}

.step-card {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.15), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    counter-increment: step-counter;
    position: relative;
}

.step-card::before {
    content: counter(step-counter);
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-accent);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.step-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--sage-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* About page features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.15), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

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

.feature-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--sage-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Late night perks list */
.perks-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.perks-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.1);
    color: var(--sage-light);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perks-list li span {
    font-size: 1.5rem;
}

/* Subpage CTA */
.subpage-cta {
    text-align: center;
    padding: 3rem 0;
}

.subpage-cta p {
    margin: 0 auto 1.5rem;
    max-width: 600px;
    text-align: center;
}

/* Responsive subpage fixes */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 4rem 1rem 3rem;
        background-attachment: scroll;
    }

    .subpage-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .subpage-section {
        padding: 3rem 0;
    }

    .league-grid,
    .whiskey-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .specials-table {
        font-size: 0.9rem;
    }

    .specials-table th,
    .specials-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ==========================================
   PRIVATE EVENTS PAGE
   ========================================== */

/* Full-viewport hero, text at bottom (Gekko-style) */
.events-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.events-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.events-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.1) 0%,
        rgba(26, 26, 26, 0.2) 40%,
        rgba(26, 26, 26, 0.55) 65%,
        rgba(26, 26, 26, 0.85) 100%
    );
    z-index: 1;
}

.events-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.events-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--gold-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.events-hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--sage-light);
    font-style: italic;
    max-width: 550px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.events-hero__cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.events-hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--sage-light);
    opacity: 0.5;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.events-hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: var(--gold-accent);
    margin: 0.5rem auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* Alternating 50/50 split sections */
.events-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.events-split + .events-split {
    border-top: 1px solid rgba(201, 168, 108, 0.08);
}

.events-split--reversed .events-split__image {
    order: 2;
}

.events-split--reversed .events-split__content {
    order: 1;
}

.events-split__image {
    position: relative;
    overflow: hidden;
}

.events-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.events-split__image:hover img {
    transform: scale(1.03);
}

.events-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--guinness-black);
}

.events-split__label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.events-split__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.events-split__text {
    color: var(--sage-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 520px;
}

.events-split__capacity {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.events-split__details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.events-split__details li {
    color: var(--sage-light);
    font-size: 0.95rem;
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.events-split__details li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
}

.events-split__cta {
    margin-top: 2rem;
}

/* Event packages section */
.events-packages {
    padding: 5rem 0;
    background-color: var(--guinness-black);
    border-top: 1px solid rgba(201, 168, 108, 0.1);
}

.events-packages__header {
    text-align: center;
    margin-bottom: 3rem;
}

.events-packages__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gold-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.events-packages__subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--sage-light);
    font-style: italic;
}

/* Food package */
.events-food {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.events-food__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.events-food__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
}

.events-food__price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-accent);
}

.events-food__list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.events-food__list li {
    color: var(--sage-light);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.events-food__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-accent);
}

.events-food__extras {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 108, 0.1);
    color: var(--sage-light);
    font-size: 0.9rem;
}

.events-food__extras p {
    margin-bottom: 0.5rem;
}

/* Beverage tiers */
.events-drinks {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.events-drinks__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.events-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.events-tier-card {
    background: linear-gradient(145deg, rgba(90, 106, 83, 0.12), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
}

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

.events-tier-card--featured {
    border-color: var(--gold-accent);
    background: linear-gradient(145deg, rgba(201, 168, 108, 0.08), rgba(0, 0, 0, 0.35));
}

.events-tier-card__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.events-tier-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.events-tier-card__desc {
    color: var(--sage-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.events-packages__fine-print {
    text-align: center;
    color: var(--sage-light);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.7;
    padding: 0 2rem;
}

.events-packages__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Terms section */
.events-terms {
    padding: 3rem 0;
    background-color: var(--guinness-black);
    border-top: 1px solid rgba(201, 168, 108, 0.08);
}

.events-terms__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.events-terms__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-terms__text {
    color: var(--sage-light);
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Final CTA section */
.events-cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(
        to bottom,
        var(--guinness-black) 0%,
        rgba(90, 106, 83, 0.12) 50%,
        var(--guinness-black) 100%
    );
    border-top: 1px solid rgba(201, 168, 108, 0.15);
}

.events-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.events-cta__text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--sage-light);
    max-width: 550px;
    margin: 0 auto 2rem;
    font-style: italic;
    line-height: 1.7;
}

.events-cta__contacts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.events-cta__contact-item {
    text-align: center;
}

.events-cta__contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.events-cta__contact-value {
    color: var(--white);
    font-size: 1.1rem;
}

.events-cta__contact-value a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.events-cta__contact-value a:hover {
    color: var(--gold-accent);
}

.events-cta__buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive: 992px */
@media (max-width: 992px) {
    .events-tier-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .events-split__content {
        padding: 3rem 2rem;
    }
    .events-tier-card {
        padding: 1.5rem 1rem;
    }
}

/* Responsive: 768px */
@media (max-width: 768px) {
    .events-hero {
        min-height: 500px;
    }
    .events-hero__content {
        padding: 0 1.5rem 3rem;
    }
    .events-hero__scroll {
        display: none;
    }
    .events-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .events-split--reversed .events-split__image,
    .events-split--reversed .events-split__content {
        order: unset;
    }
    .events-split__image {
        height: 300px;
    }
    .events-split__content {
        padding: 2.5rem 1.5rem;
    }
    .events-tier-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    .events-food__list {
        grid-template-columns: 1fr;
    }
    .events-cta__contacts {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body {
        opacity: 1;
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .menu-card-skeleton {
        animation: none;
        background: rgba(255,255,255,0.05);
    }
}
