/* GBYSL 2026 Redesign — Charcoal base, Blue + Gold accents */

/* ─── VARIABLES ─────────────────────────────────────── */
:root {
    --bg-0:    #0B0E1A;   /* hero / footer / darkest */
    --bg-1:    #10131F;   /* main dark sections       */
    --bg-2:    #181C2E;   /* card backgrounds         */
    --bg-3:    #1E2438;   /* elevated card / hover    */
    --bg-4:    #252B45;   /* deeper hover             */
    --blue:    #2070E0;   /* primary blue             */
    --blue-2:  #1558C0;   /* darker blue              */
    --blue-3:  #E8F0FF;   /* pale blue (light sections)*/
    --gold:    #F0B800;   /* primary gold             */
    --gold-2:  #C99500;   /* darker gold              */
    --gold-3:  #FFF4CC;   /* pale gold (tints)        */
    --red:     #C41E3A;   /* ODP crimson              */
    --red-2:   #9B1B30;   /* darker crimson           */
    --white:   #FFFFFF;
    --text:    #DDE2F2;   /* body text on dark        */
    --muted:   #6E788F;   /* secondary text           */
    --border:  rgba(255,255,255,0.07);
    --border-2:rgba(255,255,255,0.12);
    --shadow:  0 4px 24px rgba(0,0,0,0.35);
    --font-h:  'Outfit', sans-serif;
    --font-b:  'Inter', sans-serif;
    --radius:  10px;
    --radius-lg:16px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    background: var(--bg-1);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────── */
/* Layout only — color comes from the .theme-* class (set in /js/announcement.js) */
.ann-bar {
    padding: 0.6rem 5%;
    font-family: var(--font-b);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    letter-spacing: 0.2px;
    text-align: center;
}
.ann-bar a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.ann-bar a:hover { opacity: 0.85; }

/* Themes */
.ann-bar.theme-gold  { background: var(--gold); color: #1A1200; }
.ann-bar.theme-gold  a { background: #1A1200; color: var(--gold); }
.ann-bar.theme-green { background: #0D1A0E; color: #E6EDF7; border-bottom: 2px solid #3DCC7E; }
.ann-bar.theme-green a { background: #3DCC7E; color: #0A1A0D; }
.ann-bar.theme-red   { background: #1A0509; color: #FBE3E7; border-bottom: 2px solid var(--red); }
.ann-bar.theme-red   a { background: var(--red); color: #FFFFFF; }
.ann-bar.theme-blue  { background: var(--blue); color: #FFFFFF; }
.ann-bar.theme-blue  a { background: #FFFFFF; color: var(--blue); }

/* ─── NAVIGATION ─────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(11,14,26,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    gap: 2rem;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}
.nav-logo img { height: 63px; }
.nav-logo-text {
    font-family: var(--font-h);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}
.nav-logo-text span {
    display: block;
    font-family: var(--font-b);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(221,226,242,0.75);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--white); background: var(--border-2); }

/* Dropdown caret */
.nav-caret {
    font-size: 0.6rem;
    opacity: 0.5;
    transition: transform 0.2s;
    margin-left: 1px;
}
.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #0C0F1D;
    border: 1px solid var(--border-2);
    border-radius: 11px;
    padding: 0.45rem;
    min-width: 210px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s;
    z-index: 300;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 0.55rem 0.9rem;
    border-radius: 7px;
    font-size: 0.83rem;
    font-weight: 500;
    color: rgba(221,226,242,0.78);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    background: none;
}
.nav-dropdown a:hover { background: var(--bg-3); color: var(--white); }
.nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.35rem 0.5rem;
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-nav {
    padding: 0.5rem 1.15rem;
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.1s;
    white-space: nowrap;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-nav-outline {
    border: 1.5px solid var(--border-2);
    color: var(--text);
}
.btn-nav-gold {
    background: var(--gold);
    color: #1A1200;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--bg-0);
    border-bottom: 1px solid var(--border);
    z-index: 199;
    padding: 0.75rem 5% 1.5rem;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav-group {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
.mobile-nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.75rem 1rem 0.3rem;
}
.mobile-nav a {
    display: block;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--bg-2); }
.mobile-nav-top-links {
    padding-top: 0.25rem;
}
.mobile-nav .btn-mobile-cta {
    margin-top: 0.75rem;
    background: var(--gold);
    color: #1A1200;
    text-align: center;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
}

/* ─── IN-PAGE SECTION NAV (sticky pill jump-links for program/league pages) ─── */
.section-nav {
    position: sticky;
    top: 76px;
    z-index: 150;
    background: rgba(11,14,26,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.section-nav-inner {
    display: flex;
    gap: 0.5rem;
    padding: 0.7rem 5%;
    overflow-x: auto;
    scrollbar-width: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav a {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(221,226,242,0.7);
    border: 1.5px solid var(--border-2);
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.section-nav a:hover { color: var(--white); background: var(--bg-3); }
.section-nav a.active { background: var(--gold); color: #1A1200; border-color: var(--gold); }

/* Offsets anchored section headings so the sticky header + sub-nav don't cover them */
.anchor-section { scroll-margin-top: 150px; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/Hero1.png')
                center 55% / cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(11,14,26,0.93) 0%,
        rgba(11,14,26,0.82) 45%,
        rgba(11,14,26,0.68) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 6rem 5% 5rem;
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1500px) {
    .hero-content { grid-template-columns: 1fr 620px; }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240,184,0,0.12);
    border: 1px solid rgba(240,184,0,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-family: var(--font-h);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.hero-content h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: rgba(221,226,242,0.78);
    max-width: 480px;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ── HERO RIGHT: PROGRAM CARDS ── */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.hero-prog-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.4rem 1.7rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 13px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.hero-prog-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateX(5px);
}
.prog-rec-card { border-left: 4px solid var(--gold); }
.prog-sel-card { border-left: 4px solid #3DCC7E; }
.prog-odp-card { border-left: 4px solid var(--red); }
.prog-rec-card:hover { border-color: var(--gold); }
.prog-sel-card:hover { border-color: #3DCC7E; }
.prog-odp-card:hover { border-color: var(--red); }

.hpc-icon {
    flex-shrink: 0;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hpc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hpc-body {
    flex: 1;
    min-width: 0;
}
.hpc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}
.hpc-body h3 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.25;
}
.hpc-body p {
    font-size: 0.85rem;
    color: rgba(221,226,242,0.68);
    margin: 0;
    max-width: none;
    line-height: 1.4;
}
.hpc-cta {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.prog-rec-card .hpc-cta { background: var(--gold); color: #1A1200; }
.prog-sel-card .hpc-cta { background: #3DCC7E; color: #0A2015; }
.prog-odp-card .hpc-cta { background: var(--red); color: white; }

/* Keep old button styles for any other uses */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

/* Program sub-page hero — single column, shorter */
.prog-hero-content {
    display: block;
    max-width: 760px;
    padding-bottom: 4rem;
}
.prog-hero-content .hero-btns { margin-top: 2rem; }
.prog-hero-content p { margin-bottom: 0; }

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: 0.3; transform: scaleY(1); }
    50%      { opacity: 0.7; transform: scaleY(0.8); }
}

/* ─── PROGRAMS (DUAL SPLIT) ──────────────────────────── */
.programs-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
}

.prog-panel {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    cursor: default;
}
.prog-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.prog-panel:hover .prog-panel-bg { transform: scale(1.04); }

/* Rec overlay: warm with a gold tint */
.panel-rec .prog-panel-bg {
    background-image: url('https://gbysl.org/wp-content/uploads/2021/01/great-basin-soccer-4.jpeg');
}
.panel-rec .prog-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12,10,0,0.92) 0%,
        rgba(22,18,0,0.65) 45%,
        rgba(10,8,0,0.35) 100%
    );
}
/* Select overlay: cool with a blue tint */
.panel-sel .prog-panel-bg {
    background-image: url('https://gbysl.org/wp-content/uploads/2021/11/gbysl-001.webp');
    background-position: center top;
}
.panel-sel .prog-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,12,28,0.95) 0%,
        rgba(8,18,42,0.70) 45%,
        rgba(5,10,24,0.35) 100%
    );
}

.prog-panel-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    width: 100%;
}

.prog-logo {
    height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.prog-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.panel-rec .prog-tag {
    background: rgba(240,184,0,0.18);
    border: 1px solid rgba(240,184,0,0.4);
    color: var(--gold);
}
.panel-sel .prog-tag {
    background: rgba(32,112,224,0.18);
    border: 1px solid rgba(32,112,224,0.4);
    color: #7FB3FF;
}

.prog-panel-content h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.prog-panel-content .prog-sub {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    opacity: 0.65;
}
.panel-rec .prog-sub { color: #FFD87A; }
.panel-sel .prog-sub { color: #7FB3FF; }

.prog-panel-content p {
    font-size: 0.9rem;
    color: rgba(221,226,242,0.75);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 380px;
}
/* ── PROGRAM PANEL STATS ── */
.prog-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.prog-stat-num {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.prog-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(221,226,242,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.prog-stats-note {
    font-size: 0.7rem;
    color: rgba(221,226,242,0.35);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.panel-rec .prog-stat-num { color: var(--gold); }
.panel-sel .prog-stat-num { color: #3DCC7E; }

.prog-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.15s, box-shadow 0.15s;
}
.prog-cta:hover { transform: translateY(-2px); }
.panel-rec .prog-cta {
    background: var(--gold);
    color: #1A1200;
}
.panel-rec .prog-cta:hover { box-shadow: 0 8px 20px rgba(240,184,0,0.3); }
.panel-sel .prog-cta {
    background: var(--blue);
    color: white;
}
.panel-sel .prog-cta:hover { box-shadow: 0 8px 20px rgba(32,112,224,0.3); }

/* ODP panel */
.panel-odp .prog-panel-bg {
    background-image: url('https://gbysl.org/wp-content/uploads/2020/11/2-gbysl2-bSvELlgs.jpg');
}
.panel-odp .prog-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28,4,10,0.96) 0%,
        rgba(38,6,14,0.72) 45%,
        rgba(22,4,8,0.38) 100%
    );
}
.panel-odp .prog-tag {
    background: rgba(196,30,58,0.18);
    border: 1px solid rgba(196,30,58,0.4);
    color: #EF4444;
}
.panel-odp .prog-sub { color: rgba(255,112,145,0.75); }
.panel-odp .prog-cta {
    background: var(--red);
    color: white;
}
.panel-odp .prog-cta:hover { box-shadow: 0 8px 20px rgba(196,30,58,0.35); }

/* Dividers between panels */
.panel-rec,
.panel-sel { border-right: 1px solid rgba(255,255,255,0.08); }

/* ─── MEMBER CLUBS BAR ───────────────────────────────── */
.clubs-bar {
    background: var(--bg-0);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 5% 2.25rem;
    text-align: center;
}
.clubs-bar-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.clubs-bar-viewport {
    overflow: hidden;
    width: 100%;
    padding: 24px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clubs-bar-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: clubs-bar-scroll 38s linear infinite;
}
.clubs-bar-viewport:hover .clubs-bar-track {
    animation-play-state: paused;
}
.clubs-bar-track img {
    height: 96px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.55)) drop-shadow(0 0 14px rgba(255,255,255,0.3));
}
@keyframes clubs-bar-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── STATS BAR ──────────────────────────────────────── */
.stats-bar {
    background: var(--bg-0);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.25rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 0.75rem 2.75rem;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border-2);
}
.stat-num {
    font-family: var(--font-h);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ─── SEASON INFO BAR ────────────────────────────────── */
.season-bar {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.season-bar-items {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.season-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text);
}
.season-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-gold { background: var(--gold); }
.dot-blue { background: var(--blue); }
.dot-green { background: #3DCC7E; }
.season-item strong { color: var(--white); font-weight: 700; }
.season-bar-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    transition: color 0.2s;
}
.season-bar-link:hover { color: var(--gold); }

/* ─── RESOURCES SECTION ──────────────────────────────── */
.resources-section {
    padding: 5rem 5%;
    background: var(--bg-1);
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.section-desc {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
}
.resource-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    cursor: pointer;
}
.resource-card:hover {
    border-color: var(--border-2);
    background: var(--bg-3);
    transform: translateY(-3px);
}
.resource-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.icon-gold { background: rgba(240,184,0,0.12); }
.icon-blue { background: rgba(32,112,224,0.12); }
.icon-green { background: rgba(61,204,126,0.12); }
.icon-purple { background: rgba(140,100,220,0.12); }
.icon-teal { background: rgba(32,184,180,0.12); }
.icon-red  { background: rgba(196,30,58,0.12); }

.resource-card h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}
.resource-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}
.resource-card-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
    transition: color 0.2s;
}
.resource-card:hover .resource-card-link { color: var(--gold); }

/* ─── ANCHOR CONTENT SECTIONS (titled in-page sections on program/about pages) ─── */
.info-section {
    background: var(--bg-0);
    padding: 5rem 5%;
    border-top: 1px solid var(--border);
}
.info-section:nth-of-type(even) { background: var(--bg-1); }
.info-section-inner { max-width: 1100px; margin: 0 auto; }

.info-block {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem;
    margin-top: 1.5rem;
}
.info-block h4 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.7rem;
}
.info-block p { font-size: 0.85rem; color: rgba(221,226,242,0.8); line-height: 1.65; margin-bottom: 0.6rem; }
.info-block p:last-child { margin-bottom: 0; }
.info-block ul, .info-block ol {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.info-block li { font-size: 0.83rem; color: rgba(221,226,242,0.8); line-height: 1.6; }

.qa-grid { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2.5rem; max-width: 800px; }
.qa-item { border-bottom: 1px solid var(--border); padding-bottom: 1.1rem; }
.qa-item:last-child { border-bottom: none; }
.qa-item h4 { font-family: var(--font-h); font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.qa-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; margin: 0; }

.rules-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: 0.82rem; }
.rules-table th, .rules-table td { padding: 0.65rem 0.9rem; text-align: left; border-bottom: 1px solid var(--border); }
.rules-table th { color: var(--gold); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.5px; text-transform: uppercase; }
.rules-table td { color: rgba(221,226,242,0.8); }

/* ─── ABOUT / HERITAGE STRIP ─────────────────────────── */
.heritage-strip {
    background: var(--bg-0);
    padding: 4.5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.heritage-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: url('https://gbysl.org/wp-content/uploads/2021/03/IMG_3691.jpg') center/cover;
    position: relative;
}
.heritage-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,14,26,0.3) 0%, transparent 60%);
    border-radius: var(--radius-lg);
}
.heritage-year-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--gold);
    color: #1A1200;
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    z-index: 1;
}
.heritage-text .section-desc { margin-bottom: 1.5rem; }
.heritage-detail {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.heritage-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(221,226,242,0.75);
    line-height: 1.5;
}
.hpoint-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

/* ─── INSTAGRAM SECTION ──────────────────────────────── */
.instagram-section {
    background: var(--bg-1);
    padding: 5rem 5%;
    border-top: 1px solid var(--border);
}
.ig-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.ig-follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    border: 1.5px solid var(--border-2);
    padding: 0.5rem 1.1rem;
    border-radius: 7px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.ig-follow-link:hover { border-color: var(--blue); color: var(--white); }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
    max-width: 1000px;
}
.ig-post {
    aspect-ratio: 1;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.ig-post::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(32,112,224,0);
    transition: background 0.25s;
    border-radius: var(--radius);
}
.ig-post:hover::after { background: rgba(32,112,224,0.25); }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--bg-0) 0%, #0D1525 100%);
    border-top: 1px solid var(--border);
    padding: 5rem 5%;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.25rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-cta-gold {
    background: var(--gold);
    color: #1A1200;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cta-gold:hover {
    background: #FFD000;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240,184,0,0.3);
}
.btn-cta-blue {
    background: var(--bg-2);
    border: 1.5px solid var(--blue);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s;
}
.btn-cta-blue:hover { background: var(--blue); transform: translateY(-2px); }
.btn-cta-red {
    background: var(--bg-2);
    border: 1.5px solid var(--red);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s;
}
.btn-cta-red:hover { background: var(--red); transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
    background: var(--bg-0);
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo { display: flex; align-items: center; gap: 0.65rem; }
.footer-logo img { height: 40px; }
.footer-logo-name {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.footer-logo-sub { font-size: 0.7rem; color: var(--muted); }
.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.55; max-width: 260px; }
.footer-contact { font-size: 0.85rem; }
.footer-contact h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 0.75rem; }
.footer-contact a { display: block; color: rgba(221,226,242,0.75); margin-bottom: 0.4rem; transition: color 0.2s; font-weight: 500; }
.footer-contact a:hover { color: var(--gold); }
.footer-links h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 0.75rem; }
.footer-links a { display: block; font-size: 0.85rem; color: rgba(221,226,242,0.6); margin-bottom: 0.45rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1060px) {
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-right { max-width: 480px; }
}
@media (max-width: 960px) {
    .programs-section { grid-template-columns: 1fr; }
    .prog-panel { min-height: 420px; }
    .heritage-strip { grid-template-columns: 1fr; gap: 2.5rem; max-width: 580px; }
    .ig-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .stats-bar { gap: 1rem; }
    .stat-item { padding: 0.75rem 1.5rem; }
    .stat-item + .stat-item::before { display: none; }
    .hero-content { padding: 5rem 5% 4rem; }
    .season-bar { flex-direction: column; align-items: flex-start; }
    .ig-grid { max-width: 100%; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .ann-bar { flex-direction: column; gap: 0.6rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { width: 100%; text-align: center; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btns a { text-align: center; }
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
