/* ============================================
   All About Football - Website Styles
   Fonts: League Spartan (headings) + TT Fors (body)
   Colors matched to iOS/Android apps
   ============================================ */

/* --- Self-hosted Fonts --- */
@font-face {
    font-family: 'League Spartan';
    src: url('/fonts/league_spartan_medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'League Spartan';
    src: url('/fonts/league_spartan_semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'League Spartan';
    src: url('/fonts/league_spartan_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Fors';
    src: url('/fonts/tt_fors_light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Fors';
    src: url('/fonts/tt_fors_regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Fors';
    src: url('/fonts/tt_fors_medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Fors';
    src: url('/fonts/tt_fors_demibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Fors';
    src: url('/fonts/tt_fors_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* App brand colors (from Theme.kt / DesignSystem.swift) */
    --primary: #DD1C4B;
    --primary-dark: #BC1F51;
    --red: #DD1C4B;
    --red-dark: #BC1F51;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Surface colors (from Theme.kt light scheme) */
    --dark: #1C1C1E;
    --text: #3A3A3C;
    --text-light: #6C6C70;
    --text-muted: #9A9A9F;
    --bg: #FFFFFF;
    --bg-light: #F8F8FA;
    --bg-page: #F2F2F7;
    --bg-dark: #1C1C1E;
    --outline: #D1D1D6;
    --outline-light: #E5E5EA;

    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'TT Fors', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'League Spartan', -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

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

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

/* --- Header / Nav --- */
.site-header {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Transparent header on home page - overlays the hero */
.site-header.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
}

.site-header.header-transparent .nav-links a {
    color: rgba(255,255,255,0.9);
}

.site-header.header-transparent .nav-links a:hover,
.site-header.header-transparent .nav-links a.active {
    color: #fff;
}

.site-header.header-transparent .mobile-toggle span {
    background: #fff;
}

/* Logo switching: show dark logo by default, white on transparent header */
.logo-light { display: none; }

.header-transparent .logo-dark { display: none; }
.header-transparent .logo-light { display: block; }

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

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-family: 'TT Fors', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--red-dark);
    color: #fff !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 6px 0;
    transition: 0.3s;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: url('/images/hero-bg.jpg') center center / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 24px;
}

/* Dark overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
    margin-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
    padding: 120px 0 80px;
}

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    background: var(--red);
    display: inline-block;
    padding: 8px 24px;
    line-height: 1.1;
}

.hero-tagline {
    font-family: 'TT Fors', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.hero-location {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'TT Fors', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--red-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--red);
}

.btn-white {
    background: #fff;
    color: var(--red);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--red-dark);
}

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

/* --- Sections --- */
.section {
    padding: 80px 24px;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: #fff;
}

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-dark p {
    color: rgba(255,255,255,0.8);
}

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

.section-header .label {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--red);
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Info Grid --- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.info-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: 'League Spartan', sans-serif;
    font-size: 4rem;
    color: var(--red);
    opacity: 0.15;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial .author {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--red);
    font-style: normal;
}

/* --- Venue Cards --- */
.venue-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.venue-tab {
    font-family: 'TT Fors', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 28px;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    background: transparent;
    color: var(--red);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.venue-tab.active,
.venue-tab:hover {
    background: var(--red);
    color: #fff;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.venue-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--red);
}

.venue-card h3 {
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.venue-card .address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.venue-card .sessions {
    list-style: none;
}

.venue-card .sessions li {
    padding: 6px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f2;
}

.venue-card .sessions li:last-child {
    border-bottom: none;
}

.venue-card .sessions li strong {
    color: var(--red);
}

.venue-card .directions {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Media/Press --- */
.media-section {
    text-align: center;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.media-logos img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
    filter: grayscale(30%);
}

.media-logos img:hover {
    opacity: 1;
    filter: none;
}

/* --- Photo Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Sign Up Form --- */
.signup-section {
    max-width: 700px;
    margin: 0 auto;
}

.form-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-tab {
    font-family: 'TT Fors', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    background: transparent;
    color: var(--red);
    cursor: pointer;
    transition: all 0.2s;
}

.form-tab.active,
.form-tab:hover {
    background: var(--red);
    color: #fff;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D1D6;
    border-radius: 10px;
    font-family: 'TT Fors', sans-serif;
    font-size: 16px;
    transition: border-color 0.2s;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
}

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

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 64px 24px;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Podcast --- */
.podcast-section {
    text-align: center;
}

.podcast-embed {
    max-width: 600px;
    margin: 24px auto 0;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E5EA;
    padding: 20px 0;
}

.faq-item summary {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item .answer {
    padding-top: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 24px 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

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

.footer-social a {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #fff;
}

/* --- Page Header (inner pages) --- */
.page-header {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.8rem;
    text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 921px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .hero h1 { font-size: 2.4rem; }
    .hero .container { margin-left: 24px; }

    .site-header.header-transparent .nav-links.open {
        background: rgba(0,0,0,0.95);
    }

    .site-header.header-transparent .nav-links.open a {
        color: rgba(255,255,255,0.9);
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .steps-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .checkbox-group { grid-template-columns: 1fr; }
}

@media (max-width: 544px) {
    .hero h1 { font-size: 2rem; }
    .hero .container { padding-top: 100px; padding-bottom: 60px; }
    .section { padding: 56px 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img { height: 160px; }
    .venue-grid { grid-template-columns: 1fr; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============================================
   Animations & Micro-Interactions
   ============================================ */

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scale up from small */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ============================================
   HERO ENTRANCE ANIMATION
   ============================================ */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slow parallax drift on hero background */
@keyframes heroParallax {
    0%   { background-position: center center; }
    50%  { background-position: center 45%; }
    100% { background-position: center center; }
}

.hero {
    animation: heroParallax 20s ease-in-out infinite;
}

.hero .hero-tagline,
.hero h1,
.hero .hero-description,
.hero .hero-location,
.hero .hero-buttons {
    opacity: 0;
}

.hero .hero-tagline {
    animation: heroSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero h1 {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero .hero-description {
    animation: heroSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero .hero-location {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero .hero-buttons {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

/* ============================================
   NAV LINK ANIMATED UNDERLINE
   ============================================ */
.nav-links a:not(.nav-cta) {
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    transform: scaleX(1);
}

.site-header.header-transparent .nav-links a:not(.nav-cta)::after {
    background: #fff;
}

/* Nav CTA pulse glow */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(221, 28, 75, 0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(221, 28, 75, 0); }
}

.nav-cta {
    animation: ctaPulse 3s ease-in-out infinite;
}

/* ============================================
   ENHANCED HOVER: STEP CARDS
   ============================================ */
.step-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(221, 28, 75, 0.12), 0 4px 12px rgba(0,0,0,0.08);
    background: var(--bg);
}

/* Bounce the step number on card hover */
.step-card:hover .step-number {
    animation: bounceNumber 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceNumber {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.2); }
    70%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* ============================================
   ENHANCED HOVER: TESTIMONIAL CARDS
   ============================================ */
.testimonial {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Animate quote mark on hover */
.testimonial:hover::before {
    opacity: 0.35;
    transform: scale(1.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   ENHANCED HOVER: VENUE CARDS
   ============================================ */
.venue-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(221, 28, 75, 0.1), 0 4px 12px rgba(0,0,0,0.06);
    border-left-color: var(--red-dark);
}

/* Slide the directions link on hover */
.venue-card .directions {
    transition: transform 0.3s ease, color 0.3s ease;
}

.venue-card:hover .directions {
    transform: translateX(4px);
    color: var(--red-dark);
}

/* ============================================
   ENHANCED HOVER: GENERAL CARDS
   ============================================ */
.card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* ============================================
   ENHANCED HOVER: BUTTONS
   ============================================ */
.btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: none;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(221, 28, 75, 0.35);
}

.btn-white:hover {
    box-shadow: 0 6px 24px rgba(255,255,255,0.3);
}

/* ============================================
   ENHANCED HOVER: GALLERY IMAGES
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   MEDIA LOGOS HOVER
   ============================================ */
.media-logos img {
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.media-logos img:hover {
    transform: scale(1.08);
}

/* ============================================
   CTA BANNER ANIMATION
   ============================================ */
@keyframes shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 40%, #e8255a 70%, var(--red) 100%);
    background-size: 200% 200%;
    animation: shimmer 6s ease-in-out infinite;
}

/* ============================================
   FLOATING FOOTBALL DECORATIONS
   ============================================ */
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-15px) rotate(-8deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-25px) rotate(5deg); }
}

.hero::after {
    content: '\26BD';
    position: absolute;
    right: 8%;
    bottom: 15%;
    font-size: 4rem;
    opacity: 0.15;
    z-index: 1;
    animation: float1 6s ease-in-out infinite;
}

/* Second floating football via a wrapper */
.hero .container::after {
    content: '\26BD';
    position: absolute;
    right: -80px;
    top: 20%;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float2 8s ease-in-out infinite;
}

/* ============================================
   STEP NUMBER COUNTER ANIMATION
   ============================================ */
.step-number {
    transition: background 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-number {
    background: var(--red-dark);
}

/* ============================================
   PAGE HEADER ANIMATION
   ============================================ */
@keyframes pageHeaderIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    animation: pageHeaderIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ============================================
   SMOOTHER FAQ ACCORDION
   ============================================ */
@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item[open] .answer {
    animation: faqOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rotate the +/- icon */
.faq-item summary::after {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.faq-item summary:hover::after {
    transform: scale(1.2);
    color: var(--red-dark);
}

/* ============================================
   DESIGN TWEAKS
   ============================================ */

/* Hero buttons: align left to match hero text */
.hero-buttons {
    justify-content: flex-start;
}

/* Testimonial quote mark: more visible */
.testimonial::before {
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Gallery gap: more breathing room */
.gallery-grid {
    gap: 12px;
}

/* Page header: shadow for depth */
.page-header {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Section divider: subtle gradient line between sections */
.section + .section-light,
.section-light + .section {
    border-top: 1px solid var(--outline-light);
}

/* Footer social links hover */
.footer-links a {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* ============================================
   ACCESSIBILITY: RESPECT REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero {
        animation: none;
    }

    .hero .hero-tagline,
    .hero h1,
    .hero .hero-description,
    .hero .hero-location,
    .hero .hero-buttons {
        opacity: 1;
        animation: none;
    }

    .hero::after,
    .hero .container::after {
        animation: none;
    }

    .page-header h1 {
        animation: none;
    }

    .nav-cta {
        animation: none;
    }

    .cta-banner {
        animation: none;
    }

    .nav-links a:not(.nav-cta)::after {
        transition: none;
    }

    .step-card,
    .step-number,
    .testimonial,
    .testimonial::before,
    .venue-card,
    .card,
    .btn,
    .nav-cta,
    .gallery-item img,
    .gallery-item::after,
    .gallery-grid img,
    .media-logos img,
    .footer-links a,
    .venue-card .directions,
    .faq-item summary::after {
        transition: none;
    }

    .faq-item[open] .answer {
        animation: none;
    }
}

/* Gallery item responsive overrides */
@media (max-width: 544px) {
    .gallery-item img { height: 160px; }
    .hero::after { display: none; }
    .hero .container::after { display: none; }
}
