/* ============================================
   BIRMINGHAM MUSTANGS 2030
   Dark Stadium Athletic Aesthetic
   ============================================ */

:root {
    --blue: #2563a8;
    --blue-bright: #3b82f6;
    --blue-dark: #1a4478;
    --blue-deep: #0c1829;
    --blue-glow: rgba(59, 130, 246, 0.3);
    --black: #060a10;
    --white: #edf2f7;
    --white-pure: #ffffff;
    --grey-900: #111827;
    --grey-800: #1a2236;
    --grey-700: #243049;
    --grey-600: #374151;
    --grey-400: #9ca3af;
    --grey-300: #d1d5db;
    --accent: #4a9eff;

    --font-display: 'Teko', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    --nav-height: 70px;
    --section-pad: clamp(60px, 10vw, 120px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(6, 10, 16, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(37, 99, 168, 0.2);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 6px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    color: var(--grey-300);
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: 4px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white-pure);
    background: rgba(59, 130, 246, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--blue-bright);
    border-radius: 1px;
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-300);
    padding: 12px 24px;
    transition: color 0.2s ease, transform 0.2s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.open .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: var(--blue-bright);
    transform: translateX(8px);
}

.mobile-menu-social {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
}

.mobile-menu.open .mobile-menu-social {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.35s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37, 99, 168, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37, 99, 168, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(74, 158, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--blue-deep) 0%, var(--black) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23ffffff' 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");
    opacity: 0.5;
}

/* Stadium lights effect */
.hero-lights {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 168, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 800px;
}

.hero-logo-svg {
    width: min(500px, 90vw);
    height: auto;
    margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 0 60px rgba(37, 99, 168, 0.3));
    animation: heroLogoIn 1s ease-out 0.3s both;
    overflow: visible;
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* hero title is now the SVG logo */

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

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 16px;
    animation: heroTextIn 0.8s ease-out 0.7s both;
}

.hero-location {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--grey-400);
    letter-spacing: 0.15em;
    margin-top: 8px;
    animation: heroTextIn 0.8s ease-out 0.85s both;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    margin: 24px auto;
    animation: heroTextIn 0.8s ease-out 0.9s both;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--grey-400);
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-header {
    position: relative;
    padding: calc(var(--nav-height) + 48px) 24px 48px;
    text-align: center;
    background: var(--blue-deep);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 0%, rgba(37, 99, 168, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(12, 24, 41, 1) 0%, var(--black) 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-pure);
    line-height: 1;
}

.page-title-accent {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-top: 8px;
    font-weight: 400;
}

/* ============================================
   SECTIONS (generic)
   ============================================ */

.section {
    padding: var(--section-pad) 24px;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background: var(--black);
}

.section-darker {
    background: var(--grey-900);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-pure);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey-400);
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--blue-bright);
    margin-bottom: 40px;
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--blue);
    color: var(--white-pure);
    box-shadow: 0 4px 20px rgba(37, 99, 168, 0.3);
}

.btn-primary:hover {
    background: var(--blue-bright);
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--grey-600);
}

.btn-outline:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    background: rgba(59, 130, 246, 0.08);
}

.btn-dark {
    background: var(--grey-800);
    color: var(--white);
    border: 1px solid var(--grey-700);
}

.btn-dark:hover {
    background: var(--grey-700);
    border-color: var(--blue);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   PLAYER CARDS
   ============================================ */

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.player-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    padding: 24px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 8px 40px rgba(37, 99, 168, 0.15);
}

.player-card:hover::before {
    opacity: 1;
}

.player-card-header {
    margin-bottom: 12px;
}

.player-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--blue-bright);
    opacity: 0.9;
    margin-bottom: 4px;
}

.player-number.tbd {
    font-size: 1.2rem;
    color: var(--grey-600);
}

.player-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white-pure);
    line-height: 1.1;
}

.player-school {
    font-size: 0.82rem;
    color: var(--grey-400);
    margin-top: 4px;
}

.player-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
}

.player-tag {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: rgba(37, 99, 168, 0.15);
    color: var(--accent);
    border-radius: 3px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.player-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--grey-700);
    font-size: 0.82rem;
    color: var(--grey-400);
    justify-content: center;
    flex-wrap: wrap;
}

.player-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-meta-label {
    color: var(--grey-600);
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

/* ============================================
   SCHEDULE TIMELINE
   ============================================ */

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-card {
    display: flex;
    align-items: stretch;
    background: var(--grey-900);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 30px rgba(37, 99, 168, 0.12);
}

.schedule-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue) 100%);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-pure);
}

.schedule-details {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.schedule-event-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white-pure);
    line-height: 1.2;
}

.schedule-location {
    font-size: 0.85rem;
    color: var(--grey-400);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.schedule-location svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.schedule-dates {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-align: right;
    white-space: nowrap;
}

.schedule-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
    margin-top: 4px;
}

@media (max-width: 600px) {
    .schedule-details {
        flex-direction: column;
        align-items: flex-start;
    }
    .schedule-dates {
        text-align: left;
    }
}

/* ============================================
   STAFF CARDS
   ============================================ */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.staff-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.staff-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--grey-800);
    border: 3px solid var(--grey-700);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue-bright);
}

.staff-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white-pure);
}

.staff-role {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 4px;
}

.staff-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.staff-contact .btn {
    justify-content: center;
    width: 100%;
}

/* ============================================
   ACTION BUTTONS ROW (Impact Gold style)
   ============================================ */

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 24px;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-radius: 6px;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.action-btn:hover {
    background: var(--blue);
    border-color: var(--blue-bright);
    color: var(--white-pure);
    box-shadow: 0 4px 20px rgba(37, 99, 168, 0.25);
    transform: translateY(-2px);
}

.action-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   SCHEDULE GRAPHIC EMBED
   ============================================ */

.schedule-graphic {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(37, 99, 168, 0.1);
    border: 1px solid var(--grey-700);
}

.schedule-graphic img {
    width: 100%;
    display: block;
}

/* ============================================
   NEWS CARDS
   ============================================ */

.news-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    padding: 24px;
    transition: border-color 0.3s ease;
}

.news-card:hover {
    border-color: var(--grey-600);
}

.news-date {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white-pure);
    margin-bottom: 12px;
    line-height: 1.2;
}

.news-body {
    font-size: 0.95rem;
    color: var(--grey-400);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

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

.contact-block {
    background: var(--grey-900);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    padding: 32px;
}

.contact-block-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-pure);
    margin-bottom: 16px;
}

.contact-block p {
    color: var(--grey-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    color: var(--grey-400);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--blue);
    border-color: var(--blue-bright);
    color: var(--white-pure);
    transform: translateY(-2px);
}

/* ============================================
   TEAM PHOTO BANNER
   ============================================ */

.team-photo-banner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--grey-700);
}

.team-photo-banner img {
    width: 100%;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--grey-900);
    border-top: 1px solid var(--grey-700);
    padding: 60px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-logo-svg {
    width: 260px;
    height: auto;
    margin: 0 auto;
    display: block;
    opacity: 0.85;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-400);
    text-align: center;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 20px;
    margin-bottom: 24px;
}

.footer-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-400);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--blue-bright);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--grey-700);
    font-size: 0.8rem;
    color: var(--grey-600);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
    .hero-logo {
        width: 120px;
        height: 120px;
    }

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

    .action-buttons {
        grid-template-columns: 1fr;
    }

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

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

    .schedule-number {
        min-width: 48px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-logo-svg {
        height: 34px;
    }

    .footer-logo-svg {
        width: 200px;
    }
}

/* ============================================
   HERO BACKGROUND WATERMARK
   ============================================ */

.hero-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 70vh;
    opacity: 0.08;
    filter: blur(1px) brightness(0.7);
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
}

/* ============================================
   HERO CTA BUTTONS
   ============================================ */

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
    animation: heroTextIn 0.8s ease-out 1s both;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

/* ============================================
   ABOUT / STATS SECTION
   ============================================ */

.about-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--grey-300);
    line-height: 1.8;
    margin-top: -8px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 24px 12px;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--blue-bright);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-top: 6px;
}

@media (max-width: 600px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   ANGLED SECTION DIVIDERS
   ============================================ */

.section-angled {
    clip-path: polygon(0 3vw, 100% 0, 100% calc(100% - 3vw), 0 100%);
    padding-top: calc(var(--section-pad) + 3vw);
    padding-bottom: calc(var(--section-pad) + 3vw);
    margin-top: -3vw;
    margin-bottom: -3vw;
    position: relative;
    z-index: 1;
}

/* ============================================
   COACH PREVIEW
   ============================================ */

.coach-preview {
    max-width: 600px;
    margin: 0 auto;
}

.coach-preview-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-radius: 8px;
    padding: 28px;
    transition: border-color 0.3s ease;
}

.coach-preview-card:hover {
    border-color: var(--blue);
}

.coach-preview-card .staff-avatar {
    flex-shrink: 0;
    margin: 0;
}

.coach-preview-info {
    flex: 1;
}

.coach-preview-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white-pure);
}

.coach-preview-role {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

.coach-preview-bio {
    font-size: 0.9rem;
    color: var(--grey-400);
    margin-top: 8px;
    line-height: 1.6;
}

@media (max-width: 500px) {
    .coach-preview-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PLAYER HEADSHOTS
   ============================================ */

.player-card-photo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.player-headshot {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--grey-700);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.player-card:hover .player-headshot {
    border-color: var(--blue-bright);
    transform: scale(1.05);
}

.player-headshot-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--grey-800);
    border: 3px solid var(--grey-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-bright);
}

.player-card:hover .player-headshot-placeholder {
    border-color: var(--blue-bright);
}

/* player-card-body is already centered via .player-card text-align:center */

/* ============================================
   FACEBOOK EMBED
   ============================================ */

.facebook-embed {
    display: flex;
    justify-content: center;
}

.facebook-embed iframe {
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

/* Nav slide in */
.main-nav {
    animation: navSlideIn 0.6s ease-out both;
}

@keyframes navSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced card hover */
.player-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 50px rgba(37, 99, 168, 0.2);
}

.schedule-card {
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.schedule-card:hover {
    border-left-color: var(--blue-bright);
}

/* Section divider line animation */
.section-divider {
    transition: width 0.6s ease;
}

.reveal.visible .section-divider {
    animation: dividerExpand 0.6s ease-out 0.2s both;
}

@keyframes dividerExpand {
    from { width: 0; }
    to { width: 50px; }
}
