/* ==========================================================================
   RESET & SPORTY GLOBAL SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #08090a; /* Stark carbon black */
    color: #e5e7eb;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Forest Green Variations */
:root {
    --forest-green: #1b4332; 
    --forest-green-glow: #2d6a4f;
    --dark-surface: #121416;
    --border-gray: #232629;
}

/* Vignette Gradients */
.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8,9,10,0.5) 0%, rgba(8,9,10,0.95) 100%);
    z-index: 1;
}

.hard-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,9,10,0.85);
    z-index: 1;
}

/* ==========================================================================
   NAVIGATION BAR (Sporty Minimalist Theme with Responsive Pure CSS Drawer)
   ========================================================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 9, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #a3a3a3;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.nav-cta {
    color: #ffffff;
    border: 2px solid var(--forest-green);
    background-color: var(--forest-green);
    padding: 0.45rem 1.25rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.nav-links a.nav-cta:hover {
    background-color: transparent;
    border-color: var(--forest-green-glow);
    color: var(--forest-green-glow);
}

/* Hide CSS checkbox logic controller from modern interface */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1rem 0;
}

/* ==========================================================================
   LOGO IMAGE CONTAINERS & RESPONSIVE SCALING
   ========================================================================== */
.nav-logo-img img {
    height: 35px;
    width: auto;
    display: block;
    object-fit: contain;
}

.hero-main-logo {
    max-width: 650px;
    width: 100%;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
}

.hero-main-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   ATHLETIC TYPOGRAPHY COMPONENTS
   ========================================================================== */
h1, h2, h3, .massive-heading {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #ffffff;
}

h2 {
    font-size: 3.5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--forest-green-glow);
}

p {
    font-size: 1rem;
    color: #a3a3a3;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--forest-green-glow);
    border-left: 3px solid var(--forest-green-glow);
    padding-left: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-tag.invert {
    color: #ffffff;
    border-left-color: var(--forest-green-glow);
}

/* ==========================================================================
   HIGH-IMPACT INTERACTIVE BUTTONS
   ========================================================================== */
.btn-impact {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-impact:hover {
    background-color: #ffffff;
    color: #08090a;
    transform: translateY(-2px);
}

.btn-forest {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    color: #ffffff;
}

.btn-forest:hover {
    background-color: transparent;
    color: var(--forest-green-glow);
    border-color: var(--forest-green-glow);
}

/* ==========================================================================
   HERO SECTION (Will2 Configuration with Locked Background Position)
   ========================================================================== */
.hero-will2 {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('2.jpg') center/cover no-repeat;
    background-attachment: fixed;
    background-color: #040506;
    padding-top: 70px;
}

.hero-will2 .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    width: 100%;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #d1d5db;
    margin-bottom: 3.5rem;
}

.bottom-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--forest-green);
    z-index: 2;
}

/* ==========================================================================
   THE MISSION SECTION (Sporty Content Grid Transition)
   ========================================================================== */
.sport-story {
    padding: 10rem 0;
    background-color: #08090a;
}

.grid-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.coach-badge {
    display: inline-flex;
    flex-direction: column;
    margin-top: 2rem;
    border-left: 2px solid #ffffff;
    padding-left: 1rem;
}

.coach-badge .title-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #737373;
}

.coach-badge .name-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
}

/* Sharp Image Frame Presentation */
.image-container-impact {
    position: relative;
    overflow: hidden;
}

.image-container-impact img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.4s ease;
}

.image-container-impact:hover img {
    filter: grayscale(0%) contrast(105%);
}

.badge-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--forest-green);
    color: #ffffff;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
}

/* ==========================================================================
   PROGRAM SPECS SECTION (Fixed Background With Blurry Card Overlap)
   ========================================================================== */
.parallax-expect {
    position: relative;
    padding: 8rem 0;
    background: url('3.jpg') center/cover no-repeat fixed;
    background-color: #0c0d0e;
}

.expect-content {
    position: relative;
    z-index: 2;
}

.expect-card-impact {
    background-color: rgba(11, 12, 13, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 4px solid var(--forest-green);
    padding: 5rem 4rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    margin-top: 3.5rem;
}

.expect-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.expect-item .num {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--forest-green-glow);
    line-height: 1;
}

.expect-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.expect-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   CALL TO ACTION BANNER (Massive Athletic Impact)
   ========================================================================== */
.cta-banner-impact {
    position: relative;
    padding: 14rem 0;
    text-align: center;
    background: url('4.jpg') center/cover no-repeat;
    background-color: #040506;
}

.cta-banner-impact .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.massive-heading {
    font-size: 6rem;
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.cta-banner-impact p {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #e5e7eb;
    margin-bottom: 3.5rem;
}

/* ==========================================================================
   FOOTER (Will2 Base)
   ========================================================================== */
.footer-will2 {
    background-color: #040506;
    padding: 3rem 0;
    border-top: 1px solid var(--border-gray);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
}

.footer-logo span {
    color: var(--forest-green-glow);
}

.footer-will2 .copy {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #525252;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS (TABLETS & DESKTOP MEDIUM)
   ========================================================================== */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .story-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .expect-card-impact {
        padding: 3.5rem 2rem;
    }

    /* iOS performance override: lock parallax processing out on mid-tier platforms */
    .parallax-expect {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS (SMARTPHONES)
   ========================================================================== */
@media (max-width: 768px) {
    h2 {
        font-size: 2.6rem;
    }

    .massive-heading {
        font-size: 3.8rem;
    }

    .hero-main-logo {
        max-width: 420px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
        margin-bottom: 2.5rem;
    }

    .sport-story {
        padding: 6rem 0;
    }

    .cta-banner-impact {
        padding: 10rem 0;
    }

    /* ----------------------------------------------------------------------
       PURE CSS INTERACTIVE MOBILE MENU LOGIC
       ---------------------------------------------------------------------- */
    .nav-toggle-label {
        display: block;
        position: relative;
        z-index: 110;
        width: 24px;
        height: 20px;
    }

    /* Middle bar of hamburger */
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: #ffffff;
        height: 2px;
        width: 100%;
        position: absolute;
        transition: all 0.25s ease-in-out;
    }

    .nav-toggle-label span {
        top: 9px;
    }

    /* Top and bottom bars */
    .nav-toggle-label span::before {
        content: '';
        top: -7px;
    }

    .nav-toggle-label span::after {
        content: '';
        top: 7px;
    }

    /* Transform menu link list into a fixed viewport-wide structural overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 100%; /* Keeps off-screen to the right by default */
        width: 100%;
        height: 100vh;
        background: rgba(8, 9, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: left 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 105;
    }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
    }

    .nav-links a.nav-cta {
        padding: 0.8rem 2.5rem;
        font-size: 1.3rem;
    }

    /* Trigger layout transition when hidden checkbox is ticked */
    .nav-toggle:checked ~ .nav-links {
        left: 0;
    }

    /* Transform hamburger into a sharp dynamic 'X' when checkbox is checked */
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media (max-width: 480px) {
    .nav-logo-img img {
        height: 26px;
    }

    .hero-main-logo {
        max-width: 290px;
    }

    h2 {
        font-size: 2.2rem;
    }

    .massive-heading {
        font-size: 2.8rem;
    }

    .btn-impact {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        width: 100%; /* Stretches callout buttons comfortably across tiny mobile glass boundaries */
        text-align: center;
    }

    .footer-layout {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
/* ==========================================================================
   DYNAMIC ATHLETIC ANIMATIONS & OVERRIDES
   ========================================================================== */

/* 1. FAST-TWITCH HERO ENTRANCE */
@keyframes sprintIn {
    0% { 
        opacity: 0; 
        transform: scale(0.95) translateY(40px); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

.hero-main-logo {
    animation: sprintIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-tagline {
    opacity: 0;
    animation: sprintIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.15s forwards;
}

.cta-group {
    opacity: 0;
    animation: sprintIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
}

/* 2. KINETIC BUTTON HOVERS */
.btn-impact {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s ease;
}

/* Create the high-speed background swipe */
.btn-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-impact:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-impact:hover {
    color: #08090a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

/* 3. FORWARD-MOMENTUM LIST ITEMS */
.expect-item {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
    padding: 1rem;
    border-radius: 4px;
    border-left: 0px solid transparent;
}

.expect-item:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--forest-green-glow);
}

/* 4. ATHLETIC IMAGE SWIPE/GLARE */
.image-container-impact {
    position: relative;
}

.image-container-impact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: opticSwipe 7s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes opticSwipe {
    0% { left: -100%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

/* 5. FLOATING HIGHLIGHT TAGS */
.badge-overlay {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.image-container-impact:hover .badge-overlay {
    transform: translateY(-5px);
    background-color: var(--forest-green-glow);
}
