/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* CRITICAL BASE */
body {
    background: #000;
    color: #fff;
    line-height: 1.65;
    display: block;
}

/* =========================
   GLOBAL LAYOUT (SAFE)
========================= */
.page-wrapper,
.main-content,
main {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* =========================
   NAVBAR (UPGRADED)
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

/* CONTAINER */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO (FIXED — BIGGER & STRONGER) */
.logo {
    font-weight: 900;
    font-size: 18px; /* ? bigger */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

    .logo:hover {
        color: #e10600;
    }

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
}

    .nav-links a {
        color: #fff;
        margin-left: 32px;
        text-decoration: none;
        font-size: 14px; /* ? clearer */
        font-weight: 600;
        letter-spacing: 1px;
        position: relative;
        transition: color 0.3s ease;
    }

        /* HOVER LINE EFFECT */
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #e10600;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #e10600;
        }

            .nav-links a:hover::after {
                width: 100%;
            }
            .nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #e10600;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

/* =========================
   HERO SECTION
========================= */
.hero {
    min-height: 100vh;
    width: 100%;
    background: url('/images/boxing-hero.jpg') center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 90px;
    overflow: hidden;
}

/* ? Overlay must NOT capture clicks */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    pointer-events: none; /* ? CRITICAL */
}

/* ? Content above overlay */
.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    z-index: 10;
}

/* =========================
   HERO TEXT
========================= */
.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.red-text {
    color: #e10600;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

/* =========================
   HERO CONTACT
========================= */
.hero-contact {
    margin-bottom: 35px;
}

.hero-phone {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

    .hero-phone i {
        color: #e10600;
        margin-right: 10px;
    }

.hero-spanish {
    font-size: 14px;
    color: #aaa;
}

/* =========================
   BUTTONS (CLICK FIXED)
========================= */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 45px;
    position: relative;
    z-index: 20; /* ? ABOVE EVERYTHING */
}

.btn {
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto; /* ? ENSURE CLICKABLE */
}

.btn-red {
    background: #e10600;
    color: #fff;
}

    .btn-red:hover {
        background: #b00400;
    }

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

    .btn-outline:hover {
        background: #fff;
        color: #000;
    }

/* =========================
   SCROLL ICON (CLICK FIXED)
========================= */
.hero-scroll {
    font-size: 22px;
    opacity: 0.9;
    animation: bounce 2s infinite;
    cursor: pointer;
    position: relative;
    z-index: 20; /* ? ABOVE OVERLAY */
    pointer-events: auto;
}

    .hero-scroll i {
        color: #ffffff !important;
    }
/* ?? FORCE HERO BUTTONS CLICKABLE */
.hero-buttons,
.hero-buttons a,
.hero-scroll {
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

/* ?? PREVENT OVERLAY FROM BLOCKING CLICKS */
.hero-overlay {
    pointer-events: none !important;
}

/* ?? ENSURE HERO CONTENT IS ABOVE EVERYTHING */
.hero-content {
    position: relative;
    z-index: 9999 !important;
}
/* Hero phone links – keep design clean */
.hero-phone a,
.hero-spanish a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

    .hero-phone a:hover,
    .hero-spanish a:hover {
        color: #e10600;
    }
/* =========================
   HERO SCROLL ICON (FIXED)
========================= */

.hero-scroll {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    animation: bounce 2s infinite;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .hero-scroll i {
        color: #ffffff;
    }

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}


/* =========================
   MISSION SECTION
========================= */
.mission-section {
    background: #000;
    padding: 120px 20px;
    text-align: center;
    width: 100%;
}

.mission-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

    .mission-title span {
        color: #e10600;
    }

.mission-subtitle {
    color: #aaa;
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.mission-box {
    background: #141414;
    padding: 35px;
    max-width: 920px;
    margin: 0 auto 35px;
    border-radius: 6px;
    color: #ccc;
}

.nonprofit-badge {
    display: inline-block;
    border: 2px solid #e10600;
    padding: 16px 34px;
    margin: 40px 0 80px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* =========================
   MISSION GRID
========================= */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-item {
    text-align: center;
}

    .mission-item h4 {
        margin-top: 20px;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .mission-item p {
        color: #aaa;
        font-size: 14px;
        margin-top: 12px;
        max-width: 320px;
        margin-inline: auto;
        line-height: 1.6;
    }

/* ICONS */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

    .icon-circle.filled {
        background: #e10600;
        border: none;
    }

.mission-item:hover .icon-circle {
    transform: translateY(-6px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    nav {
        display: none;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 34px;
    }

    .btn {
        width: 100%;
    }

    .mission-title {
        font-size: 36px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   GALLERY SECTION
========================= */
/* =========================
   GALLERY SECTION
========================= */
/* =========================
   GALLERY SECTION
========================= */
/* =========================
   GALLERY SECTION
========================= */
/* =========================
   SECTION
========================= */
.gallery-section {
    padding: 80px 0;
    background: #000;
    width: 100%;
}

/* =========================
   HEADER (CENTERED)
========================= */
.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.gallery-subtitle {
    font-size: 16px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   CARD (ONE SYSTEM FOR ALL)
========================= */
.gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* ?? uniform square */
    border-radius: 16px;
    overflow: hidden;
    /* ?? background-driven media */
    background-color: #000;
    background-image: var(--thumb);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

    /* =========================
   OVERLAY
========================= */
    .gallery-card .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .gallery-card:hover .overlay {
        opacity: 1;
    }

    /* =========================
   PLAY BUTTON (VIDEO ONLY)
========================= */
    .gallery-card.video .play-btn {
        width: 72px;
        height: 72px;
        background: rgba(225, 6, 0, 0.95);
        color: #fff;
        font-size: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    /* =========================
   ACCESSIBILITY
========================= */
    .gallery-card:focus-visible {
        outline: 3px solid #e10600;
        outline-offset: 4px;
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}
.video-highlight-section {
    width: 100%;
    padding: 100px 0;
    background: #000;
    display: flex;
    justify-content: center;
}

/* =========================
   CARD (DB-DRIVEN BACKGROUND)
========================= */
.video-highlight-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    /* ?? BACKGROUND COMES FROM DATABASE */
    background-image: var(--thumb);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

    /* =========================
   DARK CINEMATIC OVERLAY
========================= */
    .video-highlight-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.75), rgba(0,0,0,0.4) );
    }

/* =========================
   CENTER CONTENT
========================= */
.video-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* =========================
   PLAY BUTTON
========================= */
.play-circle {
    width: 96px;
    height: 96px;
    background: #e10600;
    border-radius: 50%;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* =========================
   TITLE
========================= */
.video-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================
   HOVER EFFECT
========================= */
.video-highlight-card:hover .play-circle {
    transform: scale(1.12);
    background: #ff1a1a;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .video-highlight-section {
        padding: 60px 16px;
    }

    .video-overlay h3 {
        font-size: 22px;
    }

    .play-circle {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}
/* =========================
   PROGRAMS SECTION
========================= */
/* =========================
   PROGRAMS SECTION
========================= */
/* =========================
   PROGRAMS SECTION
========================= */
. /* =========================
   PROGRAMS SECTION
========================= */
.programs-section {
    background: #000;
    padding: 120px 0;
}

.programs-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.programs-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.programs-subtitle {
    color: #9a9a9a;
    margin-bottom: 70px;
    font-size: 18px;
}

/* =========================
   GRID
========================= */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}

/* =========================
   CARD (NEUTRAL DEFAULT)
========================= */
.program-card {
    background: radial-gradient(circle at top left, #1a1a1a, #050505);
    border-radius: 18px;
    padding: 44px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* =========================
   ICON
========================= */
.program-icon {
    width: 58px;
    height: 58px;
    background: #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: #fff;
}

/* =========================
   TEXT
========================= */
.program-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.program-desc {
    color: #a0a0a0;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   LIST (FONT AWESOME CHECKS)
========================= */
.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.5;
}

    .program-card li::before {
        content: "\f00c"; /* Font Awesome check */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #e10600;
        font-size: 14px;
    }

/* =========================
   HOVER (ONLY ON INTERACTION)
========================= */
.program-card:hover {
    transform: translateY(-8px);
    border-color: #e10600;
    box-shadow: 0 30px 70px rgba(225,6,0,0.35);
}

/* =========================
   OPTIONAL FEATURED CARD
   (USE ONLY IF YOU WANT)
========================= */
.program-card.is-featured {
    border-color: #e10600;
    box-shadow: 0 30px 70px rgba(225,6,0,0.35);
}


/* =========================
   RESPONSIVE
========================= */
/* =========================
   PRICING SECTION
========================= */
/* =========================
   PRICING SECTION
========================= */
.pricing-section {
    background: #000;
    padding: 120px 0;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* =========================
   TITLES
========================= */
.pricing-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.pricing-subtitle {
    color: #9a9a9a;
    margin-bottom: 70px;
    font-size: 18px;
}

/* =========================
   GRID (DESKTOP ONLY)
========================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* =========================
   LINK WRAPPER
========================= */
.pricing-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* =========================
   CARD
========================= */
.pricing-card {
    background: radial-gradient(circle at top left, #1a1a1a, #050505);
    border-radius: 18px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    position: relative;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

/* Hover only — NOT always active */
.pricing-link:hover .pricing-card {
    transform: translateY(-8px);
    border-color: #e10600;
    box-shadow: 0 30px 60px rgba(225,6,0,0.25);
}

/* =========================
   BADGE
========================= */
.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #e10600;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    color: #fff;
}

/* =========================
   PRICE
========================= */
.price {
    margin: 22px 0;
}

.amount {
    font-size: 46px;
    font-weight: 800;
}

.period {
    color: #aaa;
    margin-left: 6px;
    font-size: 15px;
}

/* =========================
   LIST (? FIXED — NO ?)
========================= */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.5;
}

    /* Font Awesome checkmark */
    .pricing-card li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #e10600;
        font-size: 14px;
    }

/* =========================
   BUTTONS (VISUAL ONLY)
========================= */
.btn-red,
.btn-outline {
    margin-top: 24px;
    padding: 14px;
    width: 100%;
    font-weight: 700;
    text-align: center;
    pointer-events: none; /* card handles click */
}

.btn-red {
    background: #e10600;
    border: none;
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* =========================
   DISCOUNT CARD
========================= */
.discount-card {
    margin-top: 80px;
    display: flex;
    gap: 24px;
    align-items: center;
    background: linear-gradient(145deg, #111, #050505);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.discount-icon {
    width: 60px;
    height: 60px;
    background: #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    border-radius: 12px;
    color: #fff;
}

/* =========================
   FIRST DAY NOTICE
========================= */
.first-day {
    margin-top: 60px;
    text-align: center;
}

.first-badge {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #e10600;
    font-weight: 700;
    margin-bottom: 16px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   NONPROFIT
========================= */
.nonprofit-section {
    background: #000;
    padding: 120px 0;
}

.nonprofit-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 24px;
    text-align: center;
}

.nonprofit-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
}

.nonprofit-subtitle {
    color: #9a9a9a;
    margin-bottom: 60px;
}

.nonprofit-card {
    background: linear-gradient(145deg, #111, #050505);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 48px;
}

    .nonprofit-card p {
        font-size: 18px;
        line-height: 1.7;
        color: #ddd;
    }

    .nonprofit-card h3 {
        margin-top: 30px;
        font-size: 28px;
        font-weight: 800;
    }
.nonprofit-section {
    background: #000;
    padding: 120px 0 140px;
}

.nonprofit-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.nonprofit-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
}

.nonprofit-subtitle {
    color: #9a9a9a;
    font-size: 18px;
    margin-bottom: 30px;
}

.nonprofit-badge {
    display: inline-block;
    border: 1px solid #e10600;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 70px;
}

/* GRID */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* ITEMS */
.mission-item {
    text-align: center;
}

    .mission-item h4 {
        margin-top: 18px;
        margin-bottom: 10px;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .mission-item p {
        font-size: 14px;
        color: #b5b5b5;
        line-height: 1.6;
    }

/* ICONS */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto;
}

    .icon-circle.filled {
        background: #e10600;
        border: none;
    }

/* HIGHLIGHT */
.mission-item.highlight h4 {
    color: #e10600;
}

/* CLOSING LINE */
.mission-closing {
    margin-top: 90px;
    font-size: 22px;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-closing {
        font-size: 20px;
    }
}

/* =========================
   WHAT WE PROVIDE
========================= */
.provide-section {
    background: #000;
    padding: 120px 0;
}

.provide-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
}

.provide-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
}

/* GRID */
.provide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD — NEUTRAL BY DEFAULT */
.provide-card {
    background: radial-gradient(circle at top left, #1a1a1a, #050505);
    border-radius: 18px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    /* HOVER ONLY (NO AUTO SELECT) */
    .provide-card:hover {
        transform: translateY(-6px);
        border-color: #e10600;
        box-shadow: 0 20px 40px rgba(225,6,0,0.2);
    }

/* ICON */
.provide-icon {
    width: 56px;
    height: 56px;
    background: #e10600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}

/* TEXT */
.provide-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.provide-card p {
    color: #aaa;
    line-height: 1.6;
}

        

/* CONTACT INFO */
.cta-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 15px;
}

    .cta-contact i {
        color: #e10600;
        margin-right: 6px;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }
}
.visit-section {
    background: #000;
    padding: 120px 24px;
}

.visit-container {
    max-width: 1300px;
    margin: auto;
}

.visit-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.visit-subtitle {
    text-align: center;
    color: #9a9a9a;
    margin-bottom: 70px;
    font-size: 18px;
}

/* GRID */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT PANEL */
.visit-info {
    background: radial-gradient(circle at top left, #1a1a1a, #050505);
    padding: 44px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

    .visit-info h3 {
        font-size: 22px;
        margin-bottom: 28px;
    }
    /* VISIT SECTION LINK FIX */
    .visit-info a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
    }

        .visit-info a:hover {
            color: #e10600;
            text-decoration: underline;
        }


/* INFO ROW */
.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border: 2px solid #e10600;
    color: #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.info-item p {
    margin: 6px 0 0;
    color: #ccc;
    line-height: 1.6;
}

.muted {
    color: #888;
    font-size: 14px;
}

/* DIRECTIONS */
.directions-link {
    display: inline-block;
    margin-top: 28px;
    color: #e10600;
    font-weight: 700;
    text-decoration: none;
}

    .directions-link:hover {
        text-decoration: underline;
    }

/* MAP */
.visit-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

    .visit-map iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-title {
        font-size: 36px;
    }
}
/* SOCIAL ICONS */
/* =========================
   FOOTER SOCIAL ICONS
========================= */
/* =========================
   FOOTER
========================= */
.site-footer {
    background: #000;
    padding: 80px 24px 30px;
    color: #ccc;
}

/* GRID LAYOUT */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* COLUMNS */
.footer-col h3,
.footer-col h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.red-text {
    color: #e10600;
}

.footer-note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #e10600;
        }

/* CONTACT LINKS */
.site-footer a {
    color: #aaa;
    text-decoration: none;
}

    .site-footer a:hover {
        color: #fff;
    }

/* SOCIAL ICONS */
/* SOCIAL ICONS */
. /* =========================
   FOOTER SOCIAL ICONS
========================= */
/* =========================
   FOOTER SOCIAL ICONS
========================= */
.footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 16px; /* ?? SPACE from address */
}

.footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 20px;
}

/* FORCE anchors to stay inline */
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    /* FACEBOOK */
    .footer-socials a.facebook {
        background-color: #1877f2;
    }

    /* INSTAGRAM */
    .footer-socials a.instagram {
        background: radial-gradient( circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90% );
    }

    /* TIKTOK */
    .footer-socials a.tiktok {
        background-color: #000;
        box-shadow: inset -2px -2px 0 #25f4ee, inset 2px 2px 0 #fe2c55;
    }

    /* YOUTUBE */
    .footer-socials a.youtube {
        background-color: #ff0000;
    }

    /* HOVER */
    .footer-socials a:hover {
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    }


/* =========================
   FOOTER BOTTOM BAR
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        font-size: 14px;
        color: #777;
    }

/* =========================
   MOBILE POLISH (OPTIONAL)
========================= */

@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }
}



/* =========================
   CERTIFICATES SECTION
========================= */
/* GRID */
/* GRID */
/* CERTIFICATES */
/* ===============================
   CERTIFICATES SECTION
================================ */
.certificates-section {
    background: #000;
    padding: 120px 0;
}

/* TITLE */
/* CERTIFICATE HEADER FIX */
.certificates-header {
    width: 100%;
    display: flex;
    justify-content: center; /* ?? true horizontal centering */
    margin-bottom: 70px;
}

.certificates-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
}


/* ===============================
   GRID LAYOUT
================================ */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

/* ===============================
   CERTIFICATE CARD
================================ */
.certificate-card {
    display: block;
    background: #111;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(0,0,0,0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .certificate-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 65px rgba(0,0,0,0.8);
    }

    /* ===============================
   CERTIFICATE IMAGE
   (FULL DOCUMENT VIEW)
================================ */
    .certificate-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4; /* Portrait document */
        object-fit: contain; /* SHOW FULL CERTIFICATE */
        background: #fff; /* Paper look */
        border-radius: 14px;
        display: block;
    }

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    #certificates .section-title {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    #certificates .section-title {
        font-size: 34px;
        margin-bottom: 50px;
    }
}
.press-section {
    background: #000;
    padding: 90px 0;
}

.press-header {
    text-align: center;
    margin-bottom: 40px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.press-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    transition: transform .25s ease, border .25s ease;
}

    .press-card h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 6px;
    }

.press-source {
    color: #aaa;
    font-size: 13px;
}

.press-card:hover {
    transform: translateY(-4px);
    border-color: #e10600;
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
}
.news-section {
    background: #000;
    padding: 90px 0;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.news-subtitle {
    color: #9a9a9a;
    font-size: 16px;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD */
.news-card {
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform .25s ease, border .25s ease;
}

    /* IMAGE – KEY SIZE FIX */
    .news-card img {
        width: 100%;
        height: 170px; /* ?? smaller */
        object-fit: cover;
        display: block;
    }

/* CONTENT */
.news-content {
    padding: 14px 18px; /* ?? tighter */
}

    .news-content h3 {
        color: #fff;
        font-size: 16px; /* ?? smaller text */
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .news-content span {
        color: #aaa;
        font-size: 13px;
    }

/* HOVER */
.news-card:hover {
    transform: translateY(-4px);
    border-color: #e10600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card img {
        height: 150px;
    }
}
/* =========================
   LEADERSHIP SECTION
========================= */
.leadership-section {
    background: #000;
    padding: 120px 0;
}

.leadership-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    text-align: center;
}

.leadership-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.leadership-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    color: #aaa;
    font-size: 18px;
    line-height: 1.6;
}

/* GRID */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* CARD */
.leader-card {
    background: radial-gradient(circle at top left, #1a1a1a, #050505);
    border-radius: 18px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .leader-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(225,6,0,0.25);
    }

    /* IMAGE */
    .leader-card img {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #e10600;
        margin-bottom: 20px;
    }

    /* TEXT */
    .leader-card h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

.leader-role {
    display: block;
    color: #e10600;
    font-weight: 700;
    margin-bottom: 14px;
}

.leader-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   MOBILE GLOBAL POLISH
========================= */

@media (max-width: 768px) {

    /* Global spacing */
    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Prevent text overflow */
    h1, h2, h3, h4 {
        word-wrap: break-word;
    }

    /* Paragraph readability */
    p {
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 600px) {

    .nav-container {
        flex-wrap: nowrap; /* ? no wrapping */
        justify-content: space-between; /* logo left, links right */
        padding: 14px 16px;
    }

    .nav-links {
        display: flex;
        flex-direction: row; /* ? keep horizontal */
        align-items: center;
    }

        .nav-links a {
            margin-left: 14px; /* tighter spacing */
            font-size: 12px; /* smaller text */
            white-space: nowrap; /* ? no line breaks */
        }

    .logo {
        font-size: 14px;
        letter-spacing: 1px;
        white-space: nowrap;
    }
}


@media (max-width: 768px) {

    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {

    .mission-grid,
    .programs-grid,
    .pricing-grid,
    .provide-grid,
    .visit-grid,
    .leadership-grid {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }
}
@media (max-width: 768px) {

    .mission-title,
    .programs-title,
    .pricing-title,
    .visit-title,
    .nonprofit-title,
    .leadership-title {
        font-size: 34px;
    }
}
@media (max-width: 768px) {

    .program-card,
    .pricing-card,
    .provide-card,
    .leader-card,
    .visit-info,
    .mission-box,
    .nonprofit-card {
        padding: 28px;
    }
}
@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}
@media (max-width: 768px) {

    .gallery-title {
        font-size: 32px;
    }

    .video-overlay h3 {
        font-size: 20px;
    }
}
/* =========================
   MOBILE HAMBURGER ONLY
========================= */

/* Desktop: hamburger hidden */
.hamburger {
    display: none;
}

/* Mobile only */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

        .hamburger span {
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
        }

    /* Hide nav links by default on mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.97);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
    }

        /* Show menu when active */
        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            margin: 14px 0;
            font-size: 15px;
        }
}
/* =========================
   MOBILE VIDEO FIX
========================= */

@media (max-width: 768px) {

    .video-highlight-section {
        padding: 40px 16px;
    }

    .video-highlight-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto; /* ? remove forced 16:9 */
        height: 220px; /* ? controlled mobile height */
        border-radius: 16px;
    }

    .video-overlay {
        padding: 20px;
    }

        .video-overlay h3 {
            font-size: 18px;
            line-height: 1.3;
            margin-top: 10px;
        }

    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
        margin-bottom: 10px;
    }
}
/* =========================
   MOBILE PRICING FIX
========================= */

@media (max-width: 768px) {

    .pricing-section {
        padding: 70px 16px;
    }

    .pricing-card {
        padding: 28px 24px; /* ? reduce bulk */
        border-radius: 16px;
    }

    /* Badge fix */
    .badge {
        top: -14px;
        font-size: 12px;
        padding: 5px 14px;
    }

    /* Price sizing */
    .amount {
        font-size: 36px; /* ? smaller than desktop */
    }

    .period {
        font-size: 14px;
    }

    /* Feature list spacing */
    .pricing-card li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* Button */
    .pricing-card .btn-red,
    .pricing-card .btn-outline {
        margin-top: 18px;
        padding: 14px;
        font-size: 14px;
    }
}
/* =========================
   MOBILE CONTACT + MAP FIX
========================= */

@media (max-width: 768px) {

    /* CONTACT SECTION */
    .visit-section {
        padding: 70px 16px;
    }

    .visit-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .visit-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    /* Stack layout (already stacked, but tighten it) */
    .visit-grid {
        gap: 36px;
    }

    /* CONTACT CARD */
    .visit-info {
        padding: 26px;
        border-radius: 16px;
    }

        .visit-info h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }

    /* INFO ROWS */
    .info-item {
        gap: 14px;
        margin-bottom: 18px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .info-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    .muted {
        font-size: 13px;
    }

    /* DIRECTIONS LINK */
    .directions-link {
        margin-top: 20px;
        font-size: 14px;
    }

    /* MAP */
    .visit-map iframe {
        min-height: 260px; /* ? much better on phones */
        border-radius: 14px;
    }
}
/* =========================
   CERTIFICATIONS MOBILE FIX
========================= */
/* =========================
   CERTIFICATIONS TITLE – MOBILE FIX (FINAL)
========================= */
@media (max-width: 768px) {

    .certificates-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 30px;
        line-height: 1.15;
        padding: 0 16px;
        word-break: normal; /* ? stop ugly splits */
        overflow-wrap: normal;
        white-space: normal;
    }

        .certificates-title .red-text {
            display: block; /* ? force clean line */
            margin-top: 6px;
        }
}
@media (max-width: 768px) {
    .certificates-title {
        letter-spacing: 1px;
    }
}
/* =========================
   HAMBURGER AUTO-HIDE (MOBILE)
========================= */
@media (max-width: 768px) {

    /* Hide hamburger when menu is open */
    .hamburger.active {
        display: none;
    }
}
.hero-buttons .btn {
    cursor: pointer;
}

    .hero-buttons .btn:active {
        transform: scale(0.97);
    }
