/* =========================
   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;
}

/* =========================
   BRAND THEME (MATCHING YOUR SCREENSHOTS)
   - Deep red gradient sections
   - Gold accents
   - Light navbar
========================= */
:root {
    --nav-bg: #f6f3ef; /* light navbar */
    --nav-text: #1a1a1a;
    --section-red-1: #7a0c0c; /* deep red */
    --section-red-2: #a10f0f; /* brighter red */
    --section-bg: linear-gradient(135deg, var(--section-red-1), var(--section-red-2));
    --card-red-1: #7b0d0d; /* card background */
    --card-red-2: #5f0a0a;
    --panel-dark: #141414; /* small panels / boxes */
    --border-soft: rgba(255,255,255,0.18);
    --accent: #f2b705; /* gold */
    --accent-hover: #d9a004;
    --text: #ffffff;
    --muted: rgba(255,255,255,0.78);
    --muted2: rgba(255,255,255,0.62);
}

/* BASE */
body {
    background: #0f0f0f;
    color: var(--text);
    line-height: 1.65;
    display: block;
}

/* Global wrapper safety */
.page-wrapper,
.main-content,
main {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* =========================
   NAVBAR (LIGHT LIKE SCREENSHOTS)
========================= */
/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* PURE WHITE */
    z-index: 1000;
    border-bottom: 1px solid #e6e6e6;
}

/* Container */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000; /* BLACK */
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease;
}

    .logo:hover {
        color: #0066ff; /* BLUE hover */
    }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
}

    .nav-links a {
        color: #000000; /* BLACK text */
        margin-left: 32px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        position: relative;
        transition: color .25s ease;
        white-space: nowrap;
    }

        /* Blue underline */
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #0066ff; /* BLUE underline */
            transition: width .25s ease;
        }

        /* Hover effect */
        .nav-links a:hover {
            color: #0066ff; /* BLUE text */
        }

            .nav-links a:hover::after {
                width: 100%;
            }

        /* Active link (important) */
        .nav-links a.active {
            color: #0066ff;
        }

            .nav-links a.active::after {
                width: 100%;
            }

/* Desktop: hamburger hidden */
.hamburger {
    display: none;
}

/* =========================
   HERO SECTION
========================= */
/* =========================
   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;
}

/* Dark overlay with slight red tone */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,0.80), rgba(0,0,0,0.80) );
    pointer-events: none;
}

/* Content */
.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    z-index: 10;
}

/* Main Title */
.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Red highlight text */
.red-text {
    color: #c91010;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* Contact Section */
.hero-contact {
    margin-bottom: 35px;
}

.hero-phone {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

    .hero-phone i {
        color: #c91010;
        margin-right: 10px;
    }

.hero-spanish {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

    /* Phone links */
    .hero-phone a,
    .hero-spanish a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 800;
        transition: color .25s ease;
    }

        .hero-phone a:hover,
        .hero-spanish a:hover {
            color: #c91010;
        }

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 45px;
    position: relative;
    z-index: 20;
}

.btn {
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all .25s ease;
    cursor: pointer;
    border-radius: 0;
    display: inline-block;
}

/* Primary Red Button */
.btn-red {
    background: #c91010;
    color: #ffffff;
    border: 2px solid #c91010;
}

    .btn-red:hover {
        background: #a50d0d;
        border-color: #a50d0d;
        transform: translateY(-3px);
    }

/* Outline Button */
.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

    .btn-outline:hover {
        background: #ffffff;
        color: #111;
        transform: translateY(-3px);
    }

/* Click feel */
.hero-buttons .btn:active {
    transform: scale(0.97);
}

/* =========================
   SCROLL ICON
========================= */

.hero-scroll {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    font-size: 28px;
    animation: bounce 2s infinite;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    z-index: 20;
}

    .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);
    }
}

/* =========================
   SHARED SECTION BASE
========================= */
section {
    width: 100%;
}

.section-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* default section look (deep red like screenshots) */
.mission-section,
.programs-section,
.pricing-section,
.nonprofit-section,
.provide-section,
.visit-section,
.leadership-section,
.gallery-section,
.video-highlight-section,
.certificates-section,
.champion-section,
.news-section,
.site-footer {
    background: var(--section-bg);
}

/* =========================
   MISSION SECTION
========================= */
/* =========================
   MISSION SECTION (MATCH SCREENSHOT)
========================= */

/* =========================
   MISSION SECTION – EXACT MATCH ADJUSTMENT
========================= */
/* =========================
   MISSION SECTION – MATCH PIC 2
========================= */

.mission-section {
    padding: 200px 20px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient( 180deg, #7f0d0d 0%, #9e0f0f 40%, #8b0f0f 70%, #6f0b0b 100% );
}

/* TITLE */
.mission-title {
    font-size: 76px;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .mission-title span {
        color: #ffb200;
    }

/* SUBTITLE */
.mission-subtitle {
    color: rgba(255,255,255,0.9);
    max-width: 760px;
    margin: 0 auto 90px;
    font-size: 20px;
}

/* MISSION BOX – flatter like reference */
.mission-box {
    background: #8c0f0f; /* darker solid red */
    padding: 70px;
    max-width: 1050px;
    margin: 0 auto 80px;
    border-radius: 6px;
    color: #ffffff;
    border: 1px solid rgba(255, 178, 0, 0.3);
    box-shadow: none; /* remove glow */
}
/* BADGE – outline like pic 2 */
.nonprofit-badge {
    display: inline-block;
    border: 2px solid #ffb200;
    background: transparent;
    color: #ffffff;
    padding: 22px 65px;
    margin: 70px 0 130px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 16px;
}

/* GRID */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px 90px;
    max-width: 1250px;
    margin: 0 auto;
}

/* ITEMS */
.mission-item h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.mission-item p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-top: 15px;
    max-width: 340px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ICONS */
.icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #ffb200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto;
    color: #ffb200;
}

.mission-item:hover .icon-circle {
    transform: translateY(-8px);
}
/* =========================
   MISSION DONATION BLOCK
========================= */

/* =========================
   PREMIUM DONATION BLOCK
========================= */

.mission-donate {
    margin: 100px auto 0;
    max-width: 1000px;
    padding: 80px 60px;
    text-align: center;
    /* Softer elegant red gradient */
    background: linear-gradient(135deg, #b51212 0%, #cf1f1f 50%, #e5391c 100%);
    border-radius: 24px;
    /* Softer premium gold */
    border: 2px solid #d4af37;
    /* More subtle glow */
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), 0 0 20px rgba(212,175,55,0.18);
}

    .mission-donate h3 {
        font-size: 36px;
        font-weight: 900;
        text-transform: uppercase;
        color: #ffffff;
        margin-bottom: 22px;
        letter-spacing: 1.5px;
    }

    .mission-donate p {
        font-size: 18px;
        color: rgba(255,255,255,0.92);
        margin-bottom: 45px;
        line-height: 1.7;
    }

/* Buttons container */
.donate-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* MAIN DONATE BUTTON (Gold Filled on Hover) */
.btn-donate {
    padding: 15px 45px;
    border: 2px solid #d4af37;
    background: transparent;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all .35s ease;
    border-radius: 6px;
}

    .btn-donate:hover {
        background: #d4af37;
        color: #111;
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

/* SECOND BUTTON */
.btn-donate-outline {
    padding: 15px 45px;
    border: 2px solid rgba(255,255,255,0.85);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    transition: all .35s ease;
    border-radius: 6px;
}

    .btn-donate-outline:hover {
        background: #ffffff;
        color: #b51212;
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }
/* =========================
   PROGRAMS SECTION
========================= */
.programs-section {
    padding: 120px 0;
}

.programs-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.programs-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.programs-subtitle {
    color: var(--muted);
    margin-bottom: 70px;
    font-size: 18px;
}

/* grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}

/* card */
.program-card {
    background: linear-gradient(145deg, var(--card-red-1), var(--card-red-2));
    border-radius: 18px;
    padding: 44px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.16);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
/* GOLD ICON BOX */
.program-icon {
    width: 58px;
    height: 58px;
    /* Elegant gold gradient */
    background: linear-gradient(135deg, #d4af37, #f1c75b);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    /* Dark icon inside */
    color: #111;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.program-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.program-desc {
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.5;
}

    .program-card li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        /* GOLD */
        color: #d4af37;
        font-size: 14px;
    }

.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242,183,5,0.8);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
    .program-card:hover .program-icon {
        box-shadow: 0 10px 25px rgba(0,0,0,0.35), 0 0 12px rgba(212,175,55,0.6);
    }

/* =========================
   PRICING SECTION
========================= */
.pricing-section {
    padding: 120px 0;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.pricing-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-subtitle {
    color: var(--muted);
    margin-bottom: 70px;
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.pricing-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pricing-card {
    background: linear-gradient(145deg, var(--card-red-1), var(--card-red-2));
    border-radius: 18px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,0.16);
    text-align: left;
    position: relative;
    height: 100%;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    cursor: pointer;
}

.pricing-link:hover .pricing-card {
    transform: translateY(-8px);
    border-color: rgba(242,183,5,0.8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 900;
    border-radius: 20px;
    color: #111;
    letter-spacing: .5px;
}

.price {
    margin: 22px 0;
}

.amount {
    font-size: 46px;
    font-weight: 900;
}

.period {
    color: rgba(255,255,255,0.75);
    margin-left: 6px;
    font-size: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.5;
}

    .pricing-card li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--accent);
        font-size: 14px;
    }

/* Buttons inside pricing cards are visual only */
.pricing-card .btn-red,
.pricing-card .btn-outline {
    margin-top: 24px;
    padding: 14px;
    width: 100%;
    font-weight: 900;
    text-align: center;
    pointer-events: none; /* card handles click */
}

/* Discount */
.discount-card {
    margin-top: 80px;
    display: flex;
    gap: 24px;
    align-items: center;
    background: rgba(0,0,0,0.25);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
}

.discount-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    border-radius: 12px;
    color: #111;
}

/* First day notice */
.first-day {
    margin-top: 60px;
    text-align: center;
}

.first-badge {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid var(--accent);
    font-weight: 900;
    margin-bottom: 16px;
}

/* =========================
   NONPROFIT SECTION
========================= */
.nonprofit-section {
    padding: 120px 0;
}

.nonprofit-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 24px;
    text-align: center;
}

.nonprofit-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.nonprofit-subtitle {
    color: var(--muted);
    margin-bottom: 60px;
    font-size: 18px;
}

.nonprofit-card {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 48px;
}

    .nonprofit-card p {
        font-size: 18px;
        line-height: 1.7;
        color: rgba(255,255,255,0.90);
    }

    .nonprofit-card h3 {
        margin-top: 30px;
        font-size: 28px;
        font-weight: 900;
    }

/* =========================
   WHAT WE PROVIDE
========================= */
.provide-section {
    padding: 120px 0;
}

.provide-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
}

.provide-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.provide-card {
    background: linear-gradient(145deg, var(--card-red-1), var(--card-red-2));
    border-radius: 18px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,0.16);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .provide-card:hover {
        transform: translateY(-6px);
        border-color: rgba(242,183,5,0.8);
        box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    }

.provide-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 900;
}

.provide-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 900;
}

.provide-card p {
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

/* =========================
   VISIT / CONTACT SECTION
========================= */
/* =========================
   VISIT SECTION
========================= */

/* =========================
   VISIT SECTION
========================= */

/* =========================
   VISIT SECTION
========================= */

.visit-section {
    padding: 120px 24px;
    background: #ece7e1;
}

.visit-container {
    max-width: 1300px;
    margin: auto;
}

/* TITLE */
.visit-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #000; /* VISIT stays black */
    letter-spacing: 1px;
}

    /* Make only OUR GYM red */
    .visit-title span {
        color: #c91010; /* RED */
    }

.visit-subtitle {
    text-align: center;
    color: #000;
    margin-bottom: 70px;
    font-size: 18px;
}

/* GRID */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* INFO CARD */
.visit-info {
    background: #ffffff;
    padding: 48px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

    .visit-info h3 {
        font-size: 22px;
        margin-bottom: 28px;
        font-weight: 900;
        color: #000;
    }

    /* Remove any background from strong/span */
    .visit-info strong,
    .visit-info span {
        background: none !important;
        color: #000;
    }

    /* Links */
    .visit-info a {
        color: #000;
        text-decoration: none;
        font-weight: 700;
    }

        .visit-info a:hover {
            text-decoration: underline;
        }

/* INFO ROW */
.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

/* ICON */
.info-icon {
    width: 44px;
    height: 44px;
    border: 2px solid #c91010;
    color: #c91010;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item p {
    margin: 4px 0 0;
    color: #000;
    line-height: 1.6;
}

/* GET DIRECTIONS */
.directions-link {
    display: inline-block;
    margin-top: 30px;
    color: #c91010 !important; /* FORCE RED */
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
}

    .directions-link:hover {
        color: #a50c0c !important;
        text-decoration: underline;
    }

/* MAP CARD */
.visit-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

    .visit-map iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
    }
@media (max-width: 768px) {

    /* Remove desktop centering wrapper */
    body {
        background: #ffffff; /* remove gray background */
    }

        body > div,
        .wrapper,
        .main-wrapper,
        .page-wrapper,
        .layout,
        .container {
            max-width: 100% !important;
            width: 100% !important;
            margin: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
}
/* =========================
   LEADERSHIP SECTION
========================= */
.leadership-section {
    padding: 120px 0;
}

.leadership-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    text-align: center;
}

.leadership-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.leadership-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.leader-card {
    background: linear-gradient(145deg, var(--card-red-1), var(--card-red-2));
    border-radius: 18px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.16);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .leader-card:hover {
        transform: translateY(-8px);
        border-color: rgba(242,183,5,0.8);
        box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    }

    .leader-card img {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid var(--accent);
        margin-bottom: 20px;
    }

    .leader-card h3 {
        font-size: 22px;
        margin-bottom: 6px;
        font-weight: 900;
    }

.leader-role {
    display: block;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 14px;
}

.leader-card p {
    color: rgba(255,255,255,0.86);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   GALLERY SECTION
/* =========================
   GALLERY SECTION (UPGRADED)
========================= */

/* =========================
   GALLERY SECTION (PROFESSIONAL UPGRADE)
========================= */

.gallery-section {
    padding: 120px 0;
    background: #f3efe9;
}

/* HEADER */
.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #111;
}

    .gallery-title span {
        color: #c91010;
    }

.gallery-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* CARD */
.gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background-image: var(--thumb);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }

    /* Overlay */
    .gallery-card .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .gallery-card:hover .overlay {
        opacity: 1;
    }

    /* =========================
   UNIVERSAL VIDEO BUTTON (ALL VIDEOS RED)
========================= */

    .gallery-card.video .play-btn,
    .play-circle {
        background: #c91010; /* brand red */
        color: #ffffff; /* white icon */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    /* Gallery video button size */
    .gallery-card.video .play-btn {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

/* Highlight video button size */
.play-circle {
    width: 96px;
    height: 96px;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Hover effect (ALL videos) */
.gallery-card:hover .play-btn,
.video-highlight-card:hover .play-circle {
    transform: scale(1.15);
    background: #a50d0d;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.gallery-card:focus-visible {
    outline: 3px solid #c91010;
    outline-offset: 4px;
}

/* =========================
   VIDEO HIGHLIGHT SECTION
========================= */

.video-highlight-section {
    width: 100%;
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    background: #f3efe9;
}

.video-highlight-card {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16/9;
    border-radius: 28px;
    overflow: hidden;
    background-image: var(--thumb);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .video-highlight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    }

    /* Dark cinematic overlay */
    .video-highlight-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.85), rgba(0,0,0,0.35) );
    }

/* Overlay 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;
    padding: 20px;
}

    .video-overlay h3 {
        font-size: 32px;
        font-weight: 900;
        letter-spacing: 1px;
    }
/* =========================
   CERTIFICATES SECTION
========================= */
/* =========================
   CERTIFICATES SECTION
========================= */

.certificates-section {
    padding: 120px 0;
    background: #ece7e1; /* EXACT same as Programs */
}

.certificates-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.certificates-title {
    text-align: center;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000; /* OUR = black */
}

    /* Make CERTIFICATIONS red */
    .certificates-title span {
        color: #c91010; /* strong red */
    }

/* GRID */
.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;
}

/* CARDS */
.certificate-card {
    display: block;
    background: #ffffff; /* clean white card */
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .certificate-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    }

    .certificate-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: contain;
        background: #ffffff;
        border-radius: 14px;
        display: block;
    }

/* =========================
   NEWS SECTION
========================= */
/* =========================
   NEWS SECTION
========================= */

.news-section {
    padding: 120px 20px;
    background: #ece7e1; /* match all other sections */
}

/* HEADER */
.news-header {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: center;
}

.news-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000; /* black */
}

    .news-title span {
        color: #c91010; /* red accent if needed */
    }

.news-subtitle {
    font-size: 16px;
    color: #000; /* full black */
    max-width: 740px;
    margin: 0 auto;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* CARD */
.news-card {
    background: #ffffff; /* white card */
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }

/* CONTENT */
.news-content {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .news-content h3 {
        color: #000; /* black */
        font-size: 16px;
        font-weight: 800;
        line-height: 1.35;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-content span {
        color: #c91010; /* red date */
        font-size: 13px;
        margin-top: auto;
        font-weight: 700;
    }

/* HOVER */
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
/* =========================
   INTERNATIONAL CHAMPION SECTION
========================= */
.champion-section {
    padding: 110px 6%;
    color: #fff;
}

.champion-container {
    max-width: 1300px;
    margin: 0 auto;
}

.champion-title {
    text-align: center;
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.champion-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 80px;
    font-size: 15px;
}

.champion-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.champion-text h3 {
    font-size: 30px;
    margin-bottom: 22px;
    font-weight: 900;
}

.nickname {
    display: block;
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
    margin-top: 4px;
}

.champion-text p {
    color: rgba(255,255,255,0.86);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 15px;
}

.champion-highlight {
    margin-top: 30px;
    padding: 16px 22px;
    border-left: 4px solid var(--accent);
    background: rgba(0,0,0,0.22);
    font-weight: 900;
    font-size: 14px;
}

.champion-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

    .champion-media img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 14px;
        transition: transform .28s ease, box-shadow .28s ease;
        cursor: pointer;
        border: 1px solid rgba(255,255,255,0.12);
    }

        .champion-media img:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 12px 30px rgba(0,0,0,0.45);
            border-color: rgba(242,183,5,0.7);
        }

.champion-video {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 26px;
    background: var(--accent);
    color: #111;
    border-radius: 30px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    border: 2px solid var(--accent);
}

    .champion-video:hover {
        transform: translateY(-3px);
        background: var(--accent-hover);
        border-color: var(--accent-hover);
        box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    }

/* =========================
   FOOTER (MATCH SCREENSHOT)
========================= */
.site-footer {
    padding: 80px 24px 30px;
    color: rgba(255,255,255,0.82);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-note {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.78);
        text-decoration: none;
        transition: color .2s ease;
    }

        .footer-links a:hover {
            color: var(--accent);
        }

.site-footer a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
}

    .site-footer a:hover {
        color: #fff;
    }

.footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 20px;
}

    .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 .2s ease, box-shadow .2s ease;
    }

        .footer-socials a.facebook {
            background-color: #1877f2;
        }

        .footer-socials a.instagram {
            background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .footer-socials a.tiktok {
            background-color: #000;
            box-shadow: inset -2px -2px 0 #25f4ee, inset 2px 2px 0 #fe2c55;
        }

        .footer-socials a.youtube {
            background-color: #ff0000;
        }

        .footer-socials a:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 12px 28px rgba(0,0,0,0.5);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        font-size: 14px;
        color: rgba(255,255,255,0.62);
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .provide-grid {
        grid-template-columns: 1fr;
    }


    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .champion-grid {
        grid-template-columns: 1fr;
    }

    .champion-media {
        grid-template-columns: repeat(2, 1fr);
    }

        .champion-media img {
            height: 150px;
        }
}
@media (max-width: 768px) {

    /* SECTION SPACING */
    section {
        padding: 80px 20px !important;
    }

    /* TEXT IMPROVEMENTS */
    p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* TITLES */
    .mission-title,
    .programs-title,
    .pricing-title,
    .visit-title,
    .nonprofit-title,
    .leadership-title {
        font-size: 30px;
        line-height: 1.2;
    }

    /* STACK ALL GRIDS */
    .mission-grid,
    .programs-grid,
    .pricing-grid,
    .visit-grid,
    .leadership-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* CENTER CARD CONTENT */
    .mission-item,
    .program-card,
    .pricing-card,
    .visit-info {
        text-align: center;
        padding: 30px;
    }

    /* CENTER ICONS */
    .icon-circle,
    .program-icon {
        margin: 0 auto 20px auto;
    }

    /* REDUCE ICON SIZE SLIGHTLY */
    .icon-circle,
    .program-icon {
        width: 52px;
        height: 52px;
    }

    /* STACK HERO BUTTONS */
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn,
    .btn-red,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* PRICING CARDS */
    .pricing-card {
        padding: 35px 25px;
    }

    /* FIX NAV CONTAINER */
    .nav-container {
        padding: 14px 18px;
    }
}
    .program-card,
    .pricing-card,
    .provide-card,
    .leader-card,
    .visit-info,
    .mission-box,
    .nonprofit-card {
        padding: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
/* Mobile video */
@media (max-width: 768px) {

    .video-highlight-section {
        padding: 50px 20px;
    }

    .video-highlight-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
        height: 240px;
        border-radius: 18px;
        overflow: hidden;
    }

    .video-overlay h3 {
        font-size: 20px;
        line-height: 1.3;
        padding: 0 10px;
    }

    /* Modern Video Button */
    .play-circle {
        width: 80px;
        height: 80px;
        background: #ffffff; /* clean white */
        color: #ff0000; /* classic video red */
        font-size: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.35);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .video-highlight-card:hover .play-circle {
        transform: scale(1.08);
        box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 34px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .gallery-title {
        font-size: 32px;
    }

    .certificates-title {
        font-size: 30px;
        line-height: 1.15;
        padding: 0 16px;
        letter-spacing: 1px;
        white-space: normal;
    }
}

/* =========================
   MOBILE HAMBURGER MENU
========================= */
@media (max-width: 768px) {

    /* NAV CONTAINER */
    .nav-container {
        max-width: 100%;
        padding: 14px 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* LOGO */
    .logo {
        font-size: 16px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
    }

        .hamburger span {
            width: 24px;
            height: 2.5px;
            background: #111; /* solid black */
            border-radius: 2px;
            transition: all 0.3s ease;
        }

    /* MOBILE DROPDOWN MENU */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff; /* pure white */
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            margin: 14px 0;
            font-size: 15px;
            font-weight: 600;
            color: #111;
        }

            .nav-links a:hover {
                color: #0d6efd; /* blue hover instead of yellow */
            }

    /* Prevent layout shift */
    .hamburger.active {
        opacity: 0.6;
    }
}
/* =========================
   ACCESSIBILITY
========================= */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.thankyou-section {
    padding: 140px 20px;
    background: #ece7e1;
    text-align: center;
}

.thankyou-container {
    max-width: 800px;
    margin: auto;
}

.thankyou-section h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #000;
}

.thankyou-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #000;
}

.thankyou-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .thankyou-box h3 {
        margin-bottom: 20px;
        font-weight: 900;
    }

    .thankyou-box ul {
        list-style: none;
        padding: 0;
    }

    .thankyou-box li {
        margin-bottom: 10px;
    }

.btn-red {
    background: #c91010;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 900;
}
@media (max-width: 768px) {

    /* Remove section side padding ONLY for visit */
    .visit-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Remove container restriction */
    .visit-container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Make map edge-to-edge */
    .visit-map {
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    .visit-map iframe {
        min-height: 420px;
    }

}
@media (max-width: 768px) {

    .certificates-title {
        font-size: 28px; /* smaller */
        line-height: 1.2;
        letter-spacing: 1px; /* reduce spacing */
        padding: 0 16px; /* safe side spacing */
        white-space: normal; /* allow wrapping */
        word-break: break-word; /* prevent overflow */
    }
}