/* =========================================================
   HIMALAYA BALTIMORE
   FRONT PAGE STYLESHEET
   File: style.css
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #152033;
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
}

ul {
    list-style: none;
}


/* =========================================================
   2. COLORS AND VARIABLES
   ========================================================= */

:root {
    --navy-dark: #03142f;
    --navy: #062458;
    --navy-light: #0c397c;

    --blue: #1769d2;
    --blue-light: #2f91ff;

    --gold: #f5b81b;
    --gold-light: #ffd76b;

    --orange: #f47b20;

    --white: #ffffff;
    --off-white: #f8fafc;
    --light-background: #f1f5f9;

    --text-dark: #152033;
    --text-muted: #637083;

    --border: #dbe4ef;

    --shadow-small:
        0 8px 24px rgba(3, 20, 47, 0.08);

    --shadow-medium:
        0 16px 40px rgba(3, 20, 47, 0.13);

    --shadow-large:
        0 24px 70px rgba(3, 20, 47, 0.2);

    --radius-small: 10px;
    --radius-medium: 17px;
    --radius-large: 24px;

    --transition: 0.3s ease;
}


/* =========================================================
   3. REUSABLE ELEMENTS
   ========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.light-label {
    color: var(--gold-light);
}

.section-heading h2,
.about-content h2,
.impact-content h2,
.contact-information h2 {
    color: var(--navy-dark);
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading > p:last-child {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
}

.button-primary {
    color: var(--navy-dark);
    background: var(--gold);
}

.button-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(245, 184, 27, 0.28);
}

.button-outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.75);
}

.button-outline:hover {
    color: var(--navy-dark);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}


/* =========================================================
   4. HEADER AND NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 20, 47, 0.96);
    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.18);
}

.nav-container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}

.brand-logo {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: contain;
    padding: 3px;
    border-radius: 50%;
    background: var(--white);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 900;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navigation a {
    padding: 10px 13px;
    color: #e8eef7;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.main-navigation .navigation-contact {
    margin-left: 5px;
    padding-inline: 18px;
    color: var(--navy-dark);
    background: var(--gold);
}

.main-navigation .navigation-contact:hover {
    color: var(--navy-dark);
    background: var(--gold-light);
}

.mobile-menu-button {
    width: 45px;
    height: 45px;
    display: none;
    place-items: center;
    border:
        1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.3rem;
    cursor: pointer;
}


/* =========================================================
   5. HERO SECTION
   ========================================================= */

.hero-section {
    min-height: 710px;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background:
        url("images/hero.jpg")
        center center / cover
        no-repeat;
}

.hero-background-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(2, 13, 34, 0.98) 0%,
            rgba(4, 31, 73, 0.92) 45%,
            rgba(4, 31, 73, 0.48) 100%
        ),
        radial-gradient(
            circle at 78% 35%,
            rgba(245, 184, 27, 0.18),
            transparent 32%
        );
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -230px;
    bottom: -260px;
    z-index: -1;
    border-radius: 50%;
    background:
        rgba(23, 105, 210, 0.25);
    filter: blur(70px);
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 830px;
    padding: 105px 0;
}

.hero-eyebrow {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--white);
    font-size:
        clamp(3.1rem, 7vw, 5.9rem);
    line-height: 0.99;
    letter-spacing: -3px;
}

.hero-content h1 span {
    display: block;
    color: var(--gold);
}

.hero-description {
    max-width: 680px;
    margin-bottom: 31px;
    color: #dce5f2;
    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 45px;
}

.hero-feature {
    min-width: 190px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border:
        1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background:
        rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-feature-icon {
    font-size: 1.45rem;
}

.hero-feature div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.hero-feature strong {
    color: var(--white);
    font-size: 0.88rem;
}

.hero-feature small {
    margin-top: 3px;
    color: #bdcadc;
    font-size: 0.72rem;
}


/* =========================================================
   6. ABOUT SECTION
   ========================================================= */

.about-section {
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: 70px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 22px;
}

.about-content > p:not(.section-label) {
    margin-bottom: 17px;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.about-highlights {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 11px;
}

.about-highlight {
    padding: 22px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    background: var(--off-white);
}

.about-highlight strong {
    display: block;
    color: var(--blue);
    font-size: 1.8rem;
    line-height: 1;
}

.about-highlight span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.about-visual {
    min-height: 485px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-large);
    background:
        radial-gradient(
            circle at center,
            rgba(245, 184, 27, 0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy-light)
        );
    box-shadow: var(--shadow-large);
}

.about-visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: -170px;
    right: -130px;
    border-radius: 50%;
    background:
        rgba(47, 145, 255, 0.18);
}

.about-logo-wrapper {
    width: min(310px, 65%);
    position: relative;
    z-index: 1;
}

.about-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 20px 30px
            rgba(0, 0, 0, 0.4)
        );
}

.mission-card {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
    padding: 21px;
    border:
        1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    color: var(--white);
    background:
        rgba(2, 13, 34, 0.78);
    backdrop-filter: blur(14px);
}

.mission-label {
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.mission-card h3 {
    margin-bottom: 6px;
    font-size: 1.18rem;
}

.mission-card p:last-child {
    color: #d8e2ef;
    font-size: 0.9rem;
}


/* =========================================================
   7. PROGRAMS SECTION
   ========================================================= */

.programs-section {
    background: var(--light-background);
}

.program-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.featured-program-card {
    border-top: 4px solid var(--gold);
}

.program-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #dfe6ef;
}

.program-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 20, 47, 0.58),
            transparent 52%
        );
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.055);
}

.program-category {
    position: absolute;
    left: 18px;
    bottom: 17px;
    z-index: 2;
    padding: 6px 11px;
    border-radius: 100px;
    color: var(--navy-dark);
    background: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.program-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.program-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 13px;
    background: #eaf3ff;
    font-size: 1.45rem;
}

.program-content h3 {
    margin-bottom: 11px;
    color: var(--navy-dark);
    font-size: 1.36rem;
    line-height: 1.27;
}

.program-content p {
    flex: 1;
    margin-bottom: 18px;
    color: var(--text-muted);
}

.program-link {
    color: var(--blue);
    font-size: 0.93rem;
    font-weight: 900;
}

.program-card:hover .program-link {
    color: var(--orange);
}


/* =========================================================
   8. COMMUNITY IMPACT SECTION
   ========================================================= */

.impact-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            120deg,
            rgba(3, 20, 47, 0.97),
            rgba(6, 36, 88, 0.93)
        ),
        url("images/Community-Background.jpg")
        center / cover no-repeat;
}

.impact-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    top: -220px;
    border-radius: 50%;
    background:
        rgba(245, 184, 27, 0.15);
    filter: blur(45px);
}

.impact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 60px;
    align-items: center;
}

.impact-content h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.impact-content > p:not(.section-label) {
    margin-bottom: 27px;
    color: #d7e2ef;
    font-size: 1.02rem;
}

.impact-cards {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.impact-card {
    padding: 25px 21px;
    border:
        1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background:
        rgba(255, 255, 255, 0.085);
    backdrop-filter: blur(9px);
}

.impact-card > span {
    display: block;
    margin-bottom: 11px;
    font-size: 1.8rem;
}

.impact-card h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 1.08rem;
}

.impact-card p {
    color: #c9d6e6;
    font-size: 0.88rem;
}


/* =========================================================
   9. TEAM SECTION
   ========================================================= */

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 19px;
}

.team-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: #b6cae5;
    box-shadow: var(--shadow-medium);
}

.team-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 17px;
    background: #eaf3ff;
    font-size: 1.65rem;
}

.team-role {
    color: var(--orange);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-card h3 {
    margin-top: 8px;
    color: var(--navy-dark);
    font-size: 1.06rem;
    line-height: 1.5;
}

.advisors-card {
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy-light)
        );
}

.advisors-card .team-icon {
    background:
        rgba(255, 255, 255, 0.11);
}

.advisors-card .team-role {
    color: var(--gold);
}

.advisor-list {
    display: grid;
    gap: 4px;
    margin-top: 10px;
}

.advisor-list span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
}


/* =========================================================
   10. GALLERY SECTION
   ========================================================= */

.gallery-section {
    background: var(--light-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns:
        1.25fr 0.875fr 0.875fr;
    gap: 18px;
}

.gallery-item {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 17px;
    background: #dce5ef;
    box-shadow: var(--shadow-small);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(2, 13, 34, 0.83),
            transparent 57%
        );
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
}


/* =========================================================
   11. CONTACT SECTION
   ========================================================= */

.contact-section {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);
    gap: 42px;
    align-items: stretch;
}

.contact-information {
    padding: 40px;
    border-radius: var(--radius-large);
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy-light)
        );
    box-shadow: var(--shadow-large);
}

.contact-information h2 {
    margin-bottom: 17px;
    color: var(--white);
}

.contact-introduction {
    color: #d8e3f0;
}

.contact-list {
    display: grid;
    margin-top: 29px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background:
        rgba(245, 184, 27, 0.14);
    font-size: 1.25rem;
}

.contact-item div {
    overflow-wrap: anywhere;
}

.contact-item strong {
    color: var(--white);
}

.contact-item p,
.contact-item a {
    display: block;
    margin-top: 3px;
    color: #d4dfed;
    font-size: 0.93rem;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    padding: 39px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--off-white);
    box-shadow: var(--shadow-small);
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-dark);
    font-size: 0.92rem;
    font-weight: 900;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #cad6e5;
    border-radius: 10px;
    outline: none;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow:
        0 0 0 4px
        rgba(23, 105, 210, 0.1);
}

.form-group textarea {
    min-height: 155px;
    resize: vertical;
}

.form-submit-button {
    width: 100%;
}

.form-status {
    min-height: 24px;
    margin-top: 12px;
    color: #13793b;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
}


/* =========================================================
   12. FOOTER
   ========================================================= */

.site-footer {
    padding: 32px 0;
    color: #c7d2e1;
    background: #020d22;
}

.footer-container {
    display: grid;
    grid-template-columns:
        1.2fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    object-fit: contain;
    padding: 2px;
    border-radius: 50%;
    background: var(--white);
}

.footer-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.footer-brand strong {
    color: var(--white);
}

.footer-brand span {
    margin-top: 3px;
    color: var(--gold);
    font-size: 0.74rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px;
}

.footer-links a {
    color: #ccd6e4;
    font-size: 0.84rem;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: right;
    font-size: 0.82rem;
}


/* =========================================================
   13. TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .main-navigation {
        gap: 2px;
    }

    .main-navigation a {
        padding-inline: 9px;
        font-size: 0.86rem;
    }

    .about-container {
        gap: 40px;
    }

    .program-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .program-card:last-child {
        grid-column: 1 / -1;
    }

    .team-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-links {
        justify-content: flex-end;
    }

    .copyright {
        grid-column: 1 / -1;
        text-align: center;
    }
}


/* =========================================================
   14. MOBILE NAVIGATION AND LAYOUT
   ========================================================= */

@media (max-width: 820px) {

    .section {
        padding: 76px 0;
    }

    .mobile-menu-button {
        display: grid;
    }

    .main-navigation {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 17px 4%;
        background: var(--navy-dark);
        border-top:
            1px solid rgba(255, 255, 255, 0.12);
        box-shadow:
            0 18px 30px rgba(0, 0, 0, 0.24);
        z-index: 1000;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation a {
        padding: 12px 14px;
        font-size: 0.94rem;
    }

    .main-navigation .navigation-contact {
        margin: 4px 0 0;
        text-align: center;
    }

    .hero-section {
        min-height: 670px;
        background-position: center;
    }

    .hero-background-overlay {
        background:
            linear-gradient(
                rgba(2, 13, 34, 0.91),
                rgba(4, 31, 73, 0.9)
            );
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        padding: 90px 0;
        text-align: center;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .about-container,
    .impact-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 450px;
    }

    .impact-container {
        gap: 40px;
    }

    .impact-content {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gallery-large {
        grid-column: 1 / -1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .copyright {
        grid-column: auto;
    }
}


/* =========================================================
   15. SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    html {
        scroll-padding-top: 74px;
    }

    .nav-container {
        min-height: 74px;
    }

    .brand-logo {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.62rem;
    }

    .main-navigation {
        top: 74px;
    }

    .section {
        padding: 66px 0;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content {
        padding: 75px 0;
    }

    .hero-content h1 {
        font-size: clamp(
            2.75rem,
            14vw,
            4.25rem
        );
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-feature {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .section-heading h2,
    .about-content h2,
    .impact-content h2,
    .contact-information h2 {
        font-size: 2.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 405px;
    }

    .about-logo-wrapper {
        width: 58%;
        margin-bottom: 60px;
    }

    .mission-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }

    .program-grid,
    .team-grid,
    .impact-cards,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .program-card:last-child,
    .gallery-large {
        grid-column: auto;
    }

    .program-image {
        height: 255px;
    }

    .impact-card {
        text-align: left;
    }

    .gallery-item {
        height: 275px;
    }

    .contact-information,
    .contact-form {
        padding: 27px 20px;
    }

    .footer-links {
        gap: 12px;
    }
}


/* =========================================================
   16. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .brand-text {
        max-width: 185px;
    }

    .brand-name {
        font-size: 0.93rem;
    }

    .hero-content h1 {
        font-size: 2.65rem;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
    }

    .about-visual {
        min-height: 380px;
    }

    .mission-card h3 {
        font-size: 1rem;
    }
}
/* COACHES */

.coaches-grid {
  width: min(900px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  align-items: start;
}

.coach-card {
  width: 100%;
  overflow: hidden;

  background: #ffffff;
  border-radius: 3px;

  color: var(--text);
  text-align: center;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.coach-card:hover {
  transform: translateY(-5px);
}


/* SQUARE PHOTO FRAME */

.coach-photo {
  width: 100%;
  aspect-ratio: 1 / 1;

  position: relative;
  overflow: hidden;

  background: #e9edf2;
}

.coach-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;
}


/* NAME STRIP */

.coach-card h3 {
  width: calc(100% - 20px);

  position: relative;
  z-index: 2;

  margin: -2px auto 10px;
  padding: 9px 8px;

  color: #ffffff;
  background: #062458;

  font-size: 1rem;
  font-style: italic;
  font-weight: 900;

  line-height: 1.1;
  text-transform: uppercase;
}

.coach-card h3::after {
  content: "";

  position: absolute;
  right: -14px;
  bottom: 0;

  border-left: 14px solid #062458;
  border-top: 18px solid transparent;
}


/* DETAILS */

.coach-card p {
  min-height: 72px;

  margin: 0;
  padding: 0 14px 17px;

  color: #172033;

  font-size: 0.83rem;
  line-height: 1.3;
}


/* INDIVIDUAL PHOTO POSITION */

.coach-chok img {
  object-position: 50% 30%;
}

.coach-dipak-rana img {
  object-position: 50% 28%;
}

.coach-raj img {
  object-position: 50% 25%;
}

.coach-rakesh img {
  object-position: 50% 30%;
}

.coach-dev img {
  object-position: 50% 25%;
}

.coach-adhitya img {
  object-position: 50% 28%;
}

.coach-rabin img {
  object-position: 50% 25%;
}

.coach-dipak-giri img {
  object-position: 50% 25%;
}

.coach-amrit img {
  object-position: 50% 25%;
}


/* TABLET */

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


/* MOBILE */

@media (max-width: 520px) {
  .coaches-grid {
    max-width: 330px;
    grid-template-columns: 1fr;
  }
}
/* =========================================
   OUR TOURNAMENTS PAGE
========================================= */

.tournaments-header {
  position: sticky;
  top: 0;
  z-index: 999;

  background: #041a38;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tournaments-header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tournaments-logo {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 900;
}

.tournaments-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tournaments-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
}

.tournaments-nav a:hover,
.tournaments-nav a.active {
  color: #f3bf3f;
}


/* HERO */

.tournaments-hero {
  position: relative;
  min-height: 620px;

  display: grid;
  place-items: center;

  background-image:
    url("images/tournaments/tournament-2025-bg.jpg");

  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tournaments-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(2, 13, 31, 0.94),
      rgba(4, 54, 108, 0.78)
    );
}

.tournaments-hero-content {
  position: relative;
  z-index: 2;

  width: min(900px, calc(100% - 32px));
  padding: 80px 0;

  text-align: center;
  color: white;
}

.tournaments-kicker {
  margin: 0 0 12px;

  color: #f3bf3f;

  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tournaments-hero h1 {
  margin: 0;

  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
}

.tournaments-hero-content > p:not(.tournaments-kicker) {
  max-width: 750px;
  margin: 24px auto 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.1rem;
  line-height: 1.8;
}

.tournaments-year-links {
  margin-top: 32px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tournaments-year-links a {
  padding: 11px 19px;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  color: white;

  text-decoration: none;
  font-weight: 800;
}

.tournaments-year-links a:hover {
  background: #f3bf3f;
  color: #041a38;
}


/* INTRO */

.tournaments-intro {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;

  text-align: center;
}

.tournaments-intro h2 {
  margin: 0 0 22px;

  color: #041a38;

  font-size: clamp(2rem, 5vw, 3.5rem);
}

.tournaments-intro p:not(.tournaments-kicker) {
  margin: 0;

  color: #56657a;

  font-size: 1.05rem;
  line-height: 1.8;
}


/* TOURNAMENT PREVIEW SECTIONS */

.tournament-preview {
  position: relative;

  min-height: 540px;

  display: grid;
  place-items: center;

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

#tournament-2023 {
  background-image:
    url("images/tournaments/tournament-2023-bg.jpg");
}

#tournament-2024 {
  background-image:
    url("images/tournaments/tournament-2024-bg.jpg");
}

#tournament-2025 {
  background-image:
    url("images/tournaments/tournament-2025-bg.jpg");
}

#kids-soccer-mela {
    background-image: none !important;

    background:
        linear-gradient(
            135deg,
            #edf4fb 0%,
            #ffffff 50%,
            #e3edf8 100%
        ) !important;
}


.tournament-preview-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(2, 16, 35, 0.92),
      rgba(6, 65, 125, 0.72)
    );
}

.tournament-preview-content {
  position: relative;
  z-index: 2;

  width: min(850px, calc(100% - 32px));
  padding: 80px 0;

  text-align: center;
  color: white;
}

.tournament-preview-content > span {
  color: #f3bf3f;

  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.tournament-preview-content h2 {
  margin: 14px 0;

  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.tournament-preview-content p {
  max-width: 650px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.06rem;
  line-height: 1.8;
}


/* MOBILE */

@media (max-width: 700px) {

  .tournaments-header-inner {
    min-height: auto;
    padding: 16px 0;

    flex-direction: column;
    align-items: flex-start;
  }

  .tournaments-nav {
    width: 100%;

    flex-wrap: wrap;
    gap: 13px;
  }

  .tournaments-hero {
    min-height: 540px;
  }

  .tournament-preview {
    min-height: 460px;
  }

}
/* =========================================
   HOMEPAGE TOURNAMENT PREVIEW
========================================= */

.home-tournaments-section {
  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      #f3f6fa 0%,
      #ffffff 50%,
      #edf3f9 100%
    );
}

.home-tournaments-heading {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto 52px;

  text-align: center;
}

.home-tournaments-kicker {
  margin: 0 0 12px;

  color: #d89b16;

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-tournaments-heading h2 {
  margin: 0;

  color: #041a38;

  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}

.home-tournaments-heading > p:not(.home-tournaments-kicker) {
  max-width: 700px;
  margin: 20px auto 0;

  color: #5d6c80;

  font-size: 1.03rem;
  line-height: 1.8;
}


/* GRID */

.home-tournaments-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}


/* CARD */

.home-tournament-card {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: flex-end;

  border-radius: 24px;

  background-size: cover;
  background-position: center;

  overflow: hidden;

  box-shadow:
    0 18px 45px rgba(4, 26, 56, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-tournament-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 28px 60px rgba(4, 26, 56, 0.26);
}

.home-tournament-card-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(2, 12, 29, 0.98) 0%,
      rgba(4, 31, 66, 0.72) 45%,
      rgba(4, 31, 66, 0.15) 100%
    );

  transition: background 0.3s ease;
}

.home-tournament-card:hover .home-tournament-card-overlay {
  background:
    linear-gradient(
      to top,
      rgba(2, 12, 29, 0.99) 0%,
      rgba(4, 43, 91, 0.8) 55%,
      rgba(4, 43, 91, 0.22) 100%
    );
}

.home-tournament-card-content {
  position: relative;
  z-index: 2;

  width: 100%;
  padding: 34px;

  color: white;
}

.home-tournament-year {
  display: inline-block;

  margin-bottom: 12px;
  padding: 7px 12px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.1);
  color: #f3bf3f;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-tournament-card h3 {
  margin: 0;

  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.home-tournament-card p {
  max-width: 510px;
  margin: 16px 0 24px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.98rem;
  line-height: 1.7;
}


/* CARD BUTTON */

.home-tournament-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 0 20px;

  border-radius: 999px;

  background: #f3bf3f;
  color: #041a38;

  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.home-tournament-button:hover {
  background: white;
  transform: translateX(4px);
}


/* MAIN BUTTON */

.home-tournaments-main-button-wrapper {
  margin-top: 44px;

  text-align: center;
}

.home-tournaments-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 28px;

  border: 2px solid #041a38;
  border-radius: 999px;

  background: #041a38;
  color: white;

  text-decoration: none;
  font-weight: 900;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.home-tournaments-main-button:hover {
  background: transparent;
  color: #041a38;
  transform: translateY(-3px);
}


/* TABLET */

@media (max-width: 900px) {

  .home-tournaments-grid {
    grid-template-columns: 1fr;
  }

  .home-tournament-card {
    min-height: 400px;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .home-tournaments-section {
    padding: 76px 0;
  }

  .home-tournaments-heading {
    margin-bottom: 36px;
  }

  .home-tournament-card {
    min-height: 390px;
    border-radius: 18px;
  }

  .home-tournament-card-content {
    padding: 25px;
  }

}
/* =========================================
   DETAILED TOURNAMENT SECTION
========================================= */

.tournament-detail-section {
  background: #f5f7fa;
}

.tournament-detail-hero {
  position: relative;

  min-height: 620px;

  display: grid;
  place-items: center;

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.tournament-detail-hero-2025 {
  background-image:
    url("images/tournaments/tournament-2025-bg.jpg");
}
.tournament-detail-hero-2024 {
  background-image:
    url("images/tournaments/tournament-2024-bg.jpeg");
}

.tournament-detail-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(1, 11, 27, 0.96),
      rgba(3, 48, 97, 0.76)
    );
}

.tournament-detail-hero-content {
  position: relative;
  z-index: 2;

  width: min(1000px, calc(100% - 32px));
  padding: 90px 0;

  color: white;
  text-align: center;
}

.tournament-edition {
  display: inline-block;

  margin-bottom: 18px;
  padding: 8px 15px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.09);
  color: #f3bf3f;

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tournament-detail-hero h2 {
  max-width: 900px;
  margin: 0 auto;

  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.02;
}

.tournament-detail-hero-content > p {
  max-width: 750px;
  margin: 24px auto 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
  line-height: 1.8;
}


/* INFO ROW */

.tournament-info-row {
  margin-top: 42px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tournament-info-row div {
  padding: 20px 16px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
}

.tournament-info-row strong,
.tournament-info-row span {
  display: block;
}

.tournament-info-row strong {
  margin-bottom: 7px;

  color: #f3bf3f;

  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tournament-info-row span {
  font-weight: 800;
}


/* MAIN CONTAINER */

.tournament-detail-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.tournament-content-block {
  margin-bottom: 90px;
}

.tournament-section-heading {
  margin-bottom: 34px;
}

.tournament-section-heading span {
  color: #d89b16;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tournament-section-heading h3 {
  margin: 10px 0 0;

  color: #041a38;

  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.tournament-story-text {
  max-width: 900px;
  margin: 0 0 18px;

  color: #56657a;

  font-size: 1.04rem;
  line-height: 1.9;
}


/* GROUP CARDS */

.tournament-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tournament-group-card {
  padding: 30px;

  border-radius: 20px;

  background: white;

  box-shadow:
    0 14px 35px rgba(4, 26, 56, 0.1);
}

.tournament-group-card h4 {
  margin: 0 0 20px;

  color: #041a38;

  font-size: 1.45rem;
}

.tournament-group-card ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.tournament-group-card li {
  padding: 13px 0;

  border-bottom: 1px solid #e6ebf1;

  color: #536176;
  font-weight: 700;
}

.tournament-group-card li:last-child {
  border-bottom: none;
}


/* STANDINGS */

.standings-table-wrapper {
  margin-bottom: 34px;

  border-radius: 18px;

  background: white;

  overflow-x: auto;

  box-shadow:
    0 12px 30px rgba(4, 26, 56, 0.09);
}

.standings-group-title {
  margin: 0;
  padding: 20px 24px;

  background: #041a38;
  color: white;

  font-size: 1.25rem;
}

.tournament-standings-table {
  width: 100%;
  min-width: 760px;

  border-collapse: collapse;
}

.tournament-standings-table th,
.tournament-standings-table td {
  padding: 16px 14px;

  border-bottom: 1px solid #e5eaf0;

  text-align: center;
}

.tournament-standings-table th:nth-child(2),
.tournament-standings-table td:nth-child(2) {
  text-align: left;
}

.tournament-standings-table th {
  background: #eef2f7;
  color: #041a38;

  font-size: 0.8rem;
  text-transform: uppercase;
}

.tournament-standings-table td {
  color: #536176;
  font-weight: 700;
}

.tournament-standings-table tbody tr:first-child td {
  background: rgba(243, 191, 63, 0.12);
}

.standings-note {
  margin: 0;
  padding: 16px 22px;

  color: #6a7789;

  font-size: 0.9rem;
  font-style: italic;
}


/* MATCH RESULTS */

.match-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.match-results-card {
  padding: 28px;

  border-radius: 20px;

  background: white;

  box-shadow:
    0 12px 30px rgba(4, 26, 56, 0.09);
}

.match-results-card h4 {
  margin: 0 0 20px;

  color: #041a38;

  font-size: 1.3rem;
}

.match-score-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;

  padding: 15px 0;

  border-bottom: 1px solid #e6ebf1;

  color: #536176;
}

.match-score-row:last-child {
  border-bottom: none;
}

.match-score-row span:last-child {
  text-align: right;
}

.match-score-row strong {
  color: #041a38;

  font-size: 1.15rem;
}


/* KNOCKOUT */

.knockout-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.knockout-round-card {
  padding: 28px;

  border-radius: 20px;

  background: white;

  box-shadow:
    0 12px 30px rgba(4, 26, 56, 0.09);
}

.knockout-final-card {
  background:
    linear-gradient(
      135deg,
      #041a38,
      #073b72
    );
}

.knockout-round-label {
  display: inline-block;

  margin-bottom: 20px;

  color: #d89b16;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.knockout-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;

  color: #536176;
  font-weight: 800;
}

.knockout-match span:last-child {
  text-align: right;
}

.knockout-match strong {
  padding: 9px 13px;

  border-radius: 10px;

  background: #f3bf3f;
  color: #041a38;

  font-size: 1.2rem;
}

.knockout-final-card .knockout-match {
  color: white;
}


/* CHAMPION */

.tournament-champion-section {
  margin-bottom: 90px;
  padding: 70px 40px;

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      #041a38,
      #073f7b
    );

  color: white;
  text-align: center;

  box-shadow:
    0 24px 60px rgba(4, 26, 56, 0.24);
}

.champion-small-title {
  color: #f3bf3f;

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tournament-champion-section h3 {
  margin: 14px 0;

  font-size: clamp(2.8rem, 6vw, 5rem);
}

.tournament-champion-section > p {
  max-width: 700px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.8);

  line-height: 1.8;
}

.champion-run {
  max-width: 850px;
  margin: 38px auto 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.champion-run div {
  padding: 24px 18px;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.07);
}

.champion-run span,
.champion-run strong,
.champion-run small {
  display: block;
}

.champion-run span {
  color: #f3bf3f;

  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.champion-run strong {
  margin: 8px 0;

  font-size: 2rem;
}

.champion-run small {
  color: rgba(255, 255, 255, 0.72);
}


/* FLYER */

.tournament-flyer-wrapper {
  max-width: 700px;
  margin: 0 auto;

  padding: 16px;

  border-radius: 22px;

  background: white;

  box-shadow:
    0 18px 45px rgba(4, 26, 56, 0.16);
}

.tournament-flyer-wrapper img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 14px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .tournament-info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tournament-groups-grid,
  .match-results-grid {
    grid-template-columns: 1fr;
  }

  .knockout-stage-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .tournament-detail-hero {
    min-height: 560px;
  }

  .tournament-info-row {
    grid-template-columns: 1fr;
  }

  .tournament-detail-container {
    padding: 65px 0;
  }

  .tournament-content-block {
    margin-bottom: 65px;
  }

  .tournament-champion-section {
    padding: 50px 22px;
  }

  .champion-run {
    grid-template-columns: 1fr;
  }

  .match-score-row,
  .knockout-match {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .match-score-row span:last-child,
  .knockout-match span:last-child {
    text-align: center;
  }

}
/* =========================================
   TOURNAMENT TIMELINE NAVIGATION
========================================= */

.tournament-timeline-section {
  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      #03152f 0%,
      #062d5c 55%,
      #041a38 100%
    );

  color: white;
}

.tournament-timeline-heading {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto 60px;

  text-align: center;
}

.tournament-timeline-heading h2 {
  margin: 0;

  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
}

.tournament-timeline-heading > p:not(.tournaments-kicker) {
  max-width: 680px;
  margin: 20px auto 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1rem;
  line-height: 1.8;
}


/* TIMELINE CONTAINER */

.tournament-timeline {
  position: relative;

  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}


/* HORIZONTAL LINE */

.tournament-timeline::before {
  content: "";

  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;

  height: 3px;

  background:
    linear-gradient(
      to right,
      rgba(243, 191, 63, 0.25),
      #f3bf3f,
      rgba(243, 191, 63, 0.25)
    );
}


/* INDIVIDUAL TIMELINE ITEM */

.tournament-timeline-item {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: white;
  text-decoration: none;
}

.timeline-year {
  margin-bottom: 13px;

  color: #f3bf3f;

  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  margin-bottom: 24px;

  border: 5px solid #041a38;
  border-radius: 50%;

  background: #f3bf3f;

  box-shadow:
    0 0 0 3px rgba(243, 191, 63, 0.35),
    0 0 24px rgba(243, 191, 63, 0.6);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tournament-timeline-item:hover .timeline-dot {
  transform: scale(1.25);

  box-shadow:
    0 0 0 5px rgba(243, 191, 63, 0.25),
    0 0 32px rgba(243, 191, 63, 0.85);
}


/* TIMELINE CARD */

.timeline-card {
  width: 100%;
  min-height: 210px;
  padding: 28px 22px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.07);

  text-align: center;

  backdrop-filter: blur(8px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.tournament-timeline-item:hover .timeline-card {
  transform: translateY(-8px);

  border-color: rgba(243, 191, 63, 0.55);

  background: rgba(255, 255, 255, 0.11);
}

.timeline-card small {
  color: #f3bf3f;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 12px 0;

  font-size: 1.45rem;
  line-height: 1.2;
}

.timeline-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.9rem;
  line-height: 1.65;
}


/* SMOOTH SCROLL OFFSET */

html {
  scroll-behavior: smooth;
}

#tournament-2023,
#tournament-2024,
#tournament-2025,
#kids-soccer-mela {
  scroll-margin-top: 90px;
}


/* TABLET */

@media (max-width: 950px) {

  .tournament-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tournament-timeline::before {
    display: none;
  }

  .timeline-dot {
    margin-bottom: 18px;
  }

}


/* MOBILE */

@media (max-width: 580px) {

  .tournament-timeline-section {
    padding: 75px 0;
  }

  .tournament-timeline-heading {
    margin-bottom: 42px;
  }

  .tournament-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-card {
    min-height: auto;
  }

}
/* =========================================
   TOURNAMENT SPONSOR AND HONORS
========================================= */

.knockout-match-note {
  margin: 18px 0 0;

  color: #68768a;

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.tournament-sponsor-card {
  position: relative;

  padding: 42px;

  border: 1px solid rgba(216, 155, 22, 0.25);
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #fffaf0
    );

  box-shadow:
    0 16px 40px rgba(4, 26, 56, 0.1);
}

.tournament-sponsor-badge {
  display: inline-block;

  margin-bottom: 18px;
  padding: 8px 14px;

  border-radius: 999px;

  background: #f3bf3f;
  color: #041a38;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tournament-sponsor-card h4 {
  margin: 0 0 20px;

  color: #041a38;

  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.tournament-sponsor-card .tournament-story-text:last-child {
  margin-bottom: 0;
}


/* HONORS */

.tournament-honors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tournament-honor-card {
  padding: 38px;

  border-radius: 22px;

  background: white;

  box-shadow:
    0 14px 35px rgba(4, 26, 56, 0.1);
}

.tournament-honor-card span {
  color: #d89b16;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tournament-honor-card h4 {
  margin: 12px 0;

  color: #041a38;

  font-size: 2rem;
}

.tournament-honor-card p {
  margin: 0;

  color: #657286;

  line-height: 1.7;
}

.champion-honor-card {
  background:
    linear-gradient(
      135deg,
      #041a38,
      #073f7b
    );

  color: white;
}

.champion-honor-card h4 {
  color: white;
}

.champion-honor-card p {
  color: rgba(255, 255, 255, 0.76);
}


@media (max-width: 700px) {

  .tournament-sponsor-card {
    padding: 28px 22px;
  }

  .tournament-honors-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================================
   2023 TOURNAMENT ADDITIONS
========================================= */

.tournament-two-groups {
  max-width: 850px;
}

.tournament-results-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tournament-final-wide {
  grid-column: 1 / -1;
}

.tournament-sponsor-subtitle {
  margin: -10px 0 22px;

  color: #d89b16;

  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.tournament-ceremony-card {
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f4f8fc
    );
}


/* Prevent very long team names from overflowing */

.match-score-row span,
.knockout-match span {
  overflow-wrap: anywhere;
}


/* TABLET AND MOBILE */

@media (max-width: 900px) {

  .tournament-results-two-column {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .tournament-final-wide {
    grid-column: auto;
  }

}
/* =========================================
   CLEAN TOURNAMENT HERO
   TEXT LEFT + IMAGE RIGHT
========================================= */

.tournament-clean-hero {
  min-height: auto;

  display: block;

  padding: 90px 0;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(243, 191, 63, 0.13),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #020d20 0%,
      #052b59 60%,
      #041a38 100%
    );

  overflow: hidden;
}

.tournament-clean-hero-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 55px;
}


/* LEFT CONTENT */

.tournament-clean-hero-content {
  color: white;
}

.tournament-clean-hero-content h2 {
  max-width: 760px;
  margin: 0;

  color: white;

  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
}

.tournament-clean-hero-content > p {
  max-width: 690px;
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.76);

  font-size: 1.05rem;
  line-height: 1.8;
}


/* INFO CARDS */

.tournament-clean-hero .tournament-info-row {
  margin-top: 38px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tournament-clean-hero .tournament-info-row div {
  padding: 18px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(6px);
}

.tournament-clean-hero .tournament-info-row strong,
.tournament-clean-hero .tournament-info-row span {
  display: block;
}

.tournament-clean-hero .tournament-info-row strong {
  margin-bottom: 6px;

  color: #f3bf3f;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tournament-clean-hero .tournament-info-row span {
  color: white;

  font-size: 0.95rem;
  font-weight: 800;
}


/* RIGHT IMAGE CARD */

.tournament-clean-hero-image {
  position: relative;

  padding: 12px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.08);

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.35);

 transform: none;
}

.tournament-clean-hero-image::before {
  content: "";

  position: absolute;
  inset: -16px;

  z-index: -1;

  border-radius: 32px;

  background: rgba(243, 191, 63, 0.11);

  filter: blur(20px);
}

.tournament-clean-hero-image img {
  display: block;

  width: 100%;
  height: 500px;

  border-radius: 18px;

  object-fit: cover;
  object-position: center;
}

.tournament-image-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;

  padding: 13px 16px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;

  background: rgba(2, 13, 32, 0.82);
  color: white;

  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;

  backdrop-filter: blur(8px);
}


/* CLEAN CONTENT BELOW HERO */

.tournament-detail-section {
  background: #f5f7fa;
}

.tournament-detail-container {
  position: relative;

  background: #f5f7fa;
}


/* TABLET */

@media (max-width: 1000px) {

  .tournament-clean-hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .tournament-clean-hero-content {
    text-align: center;
  }

  .tournament-clean-hero-content h2,
  .tournament-clean-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .tournament-clean-hero-image {
    width: min(680px, 100%);
    margin: 0 auto;

    transform: none;
  }

  .tournament-clean-hero-image img {
    height: 440px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .tournament-clean-hero {
    padding: 65px 0;
  }

  .tournament-clean-hero-inner {
    width: min(100% - 28px, 1240px);
    gap: 34px;
  }

  .tournament-clean-hero .tournament-info-row {
    grid-template-columns: 1fr;
  }

  .tournament-clean-hero-image {
    padding: 8px;
    border-radius: 20px;
  }

  .tournament-clean-hero-image img {
    height: 320px;
    border-radius: 14px;
  }

  .tournament-image-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

}
/* =========================================
   KIDS DEVELOPMENT PROGRAM
========================================= */

.kids-development-section {
  background:
    linear-gradient(
      180deg,
      #f4f8fc 0%,
      #ffffff 45%,
      #eef4f9 100%
    );

  color: #041a38;
}


/* INTRO */

.kids-development-intro {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 60px;
}

.kids-development-label {
  display: inline-block;

  margin-bottom: 16px;

  color: #d58d0d;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kids-development-intro-content h2 {
  margin: 0;

  color: #041a38;

  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.02;
}

.kids-development-intro-content h3 {
  margin: 20px 0;

  color: #165a96;

  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.4;
}

.kids-development-intro-content p {
  margin: 0 0 18px;

  color: #5b697b;

  font-size: 1.02rem;
  line-height: 1.85;
}

.kids-development-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  margin-top: 14px;
  padding: 0 25px;

  border-radius: 999px;

  background: #041a38;
  color: white;

  text-decoration: none;
  font-weight: 900;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.kids-development-button:hover {
  transform: translateY(-3px);

  background: #d58d0d;
}


/* INTRO IMAGE */
.kids-development-section {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(233, 166, 25, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(10, 55, 105, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f4f7fb 0%,
            #eaf1f9 55%,
            #dfeaf6 100%
        );
}

/* MAIN CONTAINER */

.kids-development-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 100px;
}

.kids-section-heading {
  max-width: 800px;
  margin: 0 auto 52px;

  text-align: center;
}

.kids-section-heading span {
  color: #d58d0d;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kids-section-heading h3 {
  margin: 12px 0 0;

  color: #041a38;

  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.kids-section-heading p {
  margin: 20px auto 0;

  color: #657286;

  font-size: 1rem;
  line-height: 1.8;
}


/* JOURNEY CARDS */

.kids-journey-card {
  position: relative;

  margin-bottom: 30px;

  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);

  border: 1px solid #e1e7ee;
  border-radius: 22px;

  background: white;

  overflow: hidden;

  box-shadow:
    0 14px 36px rgba(4, 26, 56, 0.09);
}

.kids-journey-year {
  display: grid;
  place-items: center;

  padding: 30px 20px;

  background:
    linear-gradient(
      150deg,
      #041a38,
      #0a528e
    );

  color: white;
}

.kids-journey-year span {
  color: #f3bf3f;

  font-size: 2rem;
  font-weight: 900;
}

.kids-journey-content {
  padding: 38px 42px;
}

.kids-journey-tag {
  color: #d58d0d;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kids-journey-content h4 {
  margin: 10px 0 18px;

  color: #041a38;

  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.kids-journey-content p {
  margin: 0 0 15px;

  color: #5f6d80;

  line-height: 1.85;
}

.kids-journey-content p:last-child {
  margin-bottom: 0;
}

.kids-journey-current {
  border-color: rgba(213, 141, 13, 0.38);
}


/* HIGHLIGHTS */

.kids-program-highlights {
  padding: 95px 0 40px;
}

.kids-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kids-highlight-card {
  padding: 30px;

  border-radius: 20px;

  background: white;

  box-shadow:
    0 12px 30px rgba(4, 26, 56, 0.09);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.kids-highlight-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 42px rgba(4, 26, 56, 0.14);
}

.kids-highlight-card strong {
  display: block;

  margin-bottom: 12px;

  color: #0a528e;

  font-size: 1.2rem;
}

.kids-highlight-card p {
  margin: 0;

  color: #667487;

  line-height: 1.7;
}


/* MISSION */

.kids-program-mission {
  margin: 90px 0;
  padding: 70px 55px;

  border-radius: 26px;

  background:
    radial-gradient(
      circle at top left,
      rgba(243, 191, 63, 0.18),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #041a38,
      #073f79
    );

  color: white;
  text-align: center;

  box-shadow:
    0 22px 55px rgba(4, 26, 56, 0.23);
}

.kids-program-mission > span {
  color: #f3bf3f;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kids-program-mission blockquote {
  max-width: 900px;
  margin: 26px auto;

  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.kids-program-mission p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-weight: 800;
}


/* FLYER */

.kids-program-flyer-section {
  padding-top: 20px;

  scroll-margin-top: 90px;
}

.kids-program-flyer-card {
  max-width: 720px;
  margin: 0 auto;

  padding: 15px;

  border-radius: 24px;

  background: white;

  box-shadow:
    0 20px 50px rgba(4, 26, 56, 0.17);
}

.kids-program-flyer-card img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 16px;
}


/* TABLET */

@media (max-width: 950px) {

  .kids-development-intro {
    grid-template-columns: 1fr;
  }

  .kids-development-intro-content {
    text-align: center;
  }

  .kids-development-intro-image {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .kids-development-intro-image img {
    height: 460px;
  }

  .kids-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .kids-development-intro {
    width: min(100% - 28px, 1240px);
    padding: 70px 0;
  }

  .kids-development-intro-image img {
    height: 340px;
  }

  .kids-development-container {
    padding-bottom: 75px;
  }

  .kids-journey-card {
    grid-template-columns: 1fr;
  }

  .kids-journey-year {
    min-height: 85px;
  }

  .kids-journey-content {
    padding: 30px 23px;
  }

  .kids-highlights-grid {
    grid-template-columns: 1fr;
  }

  .kids-program-mission {
    margin: 70px 0;
    padding: 52px 23px;
  }

}
/* =========================================
   ABOUT HIMALAYA BALTIMORE
========================================= */

.club-about-section {
  padding: 105px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(213, 141, 13, 0.08),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #f5f8fc 0%,
      #ffffff 52%,
      #eef4f9 100%
    );
}

.club-about-container {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}


/* HEADING */

.club-about-heading {
  max-width: 820px;
  margin: 0 auto 52px;

  text-align: center;
}

.club-about-heading span {
  display: inline-block;

  margin-bottom: 14px;

  color: #d58d0d;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.club-about-heading h2 {
  margin: 0;

  color: #041a38;

  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.club-about-heading p {
  margin: 20px auto 0;

  color: #667487;

  font-size: 1.08rem;
  line-height: 1.7;
}


/* MAIN STORY */

.club-about-content {
  padding: 55px 60px;

  border: 1px solid #e1e8ef;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 20px 50px rgba(4, 26, 56, 0.11);
}

.club-about-content p {
  margin: 0 0 23px;

  color: #58677a;

  font-size: 1.03rem;
  line-height: 1.95;
  text-align: justify;
}

.club-about-content p:first-child::first-letter {
  float: left;

  margin: 8px 10px 0 0;

  color: #0a528e;

  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.78;
}

.club-about-content p:last-child {
  margin-bottom: 0;
}


/* QUOTE */

.club-about-quote {
  margin-top: 42px;
  padding: 52px 45px;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at top right,
      rgba(243, 191, 63, 0.17),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #041a38,
      #07508e
    );

  color: white;
  text-align: center;

  box-shadow:
    0 20px 48px rgba(4, 26, 56, 0.22);
}

.club-about-quote blockquote {
  max-width: 850px;
  margin: 0 auto;

  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.55;
}

.club-about-quote p {
  margin: 22px 0 0;

  color: #f3bf3f;

  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}


/* TABLET */

@media (max-width: 850px) {

  .club-about-content {
    padding: 45px 38px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .club-about-section {
    padding: 75px 0;
  }

  .club-about-heading {
    margin-bottom: 38px;
  }

  .club-about-content {
    padding: 32px 23px;

    border-radius: 20px;
  }

  .club-about-content p {
    font-size: 0.98rem;
    line-height: 1.82;
    text-align: left;
  }

  .club-about-content p:first-child::first-letter {
    font-size: 3.6rem;
  }

  .club-about-quote {
    margin-top: 30px;
    padding: 42px 24px;

    border-radius: 20px;
  }

}
/* =========================================
   ABOUT US HOMEPAGE PREVIEW
========================================= */

.about-preview-section {
  padding: 105px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(213, 141, 13, 0.09),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f2f6fa 100%
    );
}

.about-preview-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 65px;
}
/* =========================================
   ABOUT US HOMEPAGE STORY PREVIEW
========================================= */

.about-story-preview {
  padding: 105px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(213, 141, 13, 0.08),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f1f6fa 100%
    );
}

.about-story-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}


/* HEADING */

.about-story-heading {
  max-width: 850px;
  margin: 0 auto 42px;

  text-align: center;
}

.about-story-heading span {
  display: inline-block;

  margin-bottom: 14px;

  color: #d58d0d;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story-heading h2 {
  margin: 0;

  color: #041a38;

  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
}


/* CONTENT */

.about-story-content {
  max-width: 880px;
  margin: 42px auto 0;

  text-align: center;
}

.about-story-content p {
  margin: 0 0 17px;

  color: #5f6d80;

  font-size: 1.04rem;
  line-height: 1.9;
}

.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 15px;

  color: #07508e;

  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
}

.about-story-link span {
  font-size: 1.25rem;

  transition: transform 0.25s ease;
}

.about-story-link:hover span {
  transform: translateX(6px);
}

.about-story-link::after {
  position: absolute;
}


/* TABLET */

@media (max-width: 900px) {

  .about-story-preview {
    padding: 85px 0;
  }

  .about-story-heading {
    margin-bottom: 34px;
  }

  .about-story-content {
    margin-top: 34px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .about-story-preview {
    padding: 72px 0;
  }

  .about-story-container {
    width: min(100% - 26px, 1180px);
  }

  .about-story-photo {
    padding: 7px;

    border-radius: 19px;
  }

  .about-story-photo img {
    border-radius: 13px;
  }

}
/* =========================================
   FULL ABOUT PAGE
========================================= */

.about-page-body {
  margin: 0;

  background: #f4f7fa;
  color: #041a38;

  font-family: "Inter", sans-serif;
}


/* HEADER */

.about-page-header {
  position: sticky;
  top: 0;
  z-index: 100;

  min-height: 74px;
  padding: 0 5%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border-bottom: 1px solid rgba(4, 26, 56, 0.08);

  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
}

.about-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #041a38;

  text-decoration: none;
  font-weight: 900;
}

.about-page-brand img {
  width: 48px;
  height: 48px;

  object-fit: contain;
}

.about-back-home {
  color: #07508e;

  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}


/* HERO */

.about-page-hero {
  padding: 90px 0 70px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(243, 191, 63, 0.15),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      #eef4f9
    );
}

.about-page-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.about-page-title {
  max-width: 900px;
  margin: 0 auto 42px;

  text-align: center;
}

.about-page-title > span {
  display: inline-block;

  margin-bottom: 14px;

  color: #d58d0d;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-page-title h1 {
  margin: 0;

  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.about-page-title p {
  margin: 20px 0 0;

  color: #657286;

  font-size: 1.08rem;
}


/* =========================================
   ABOUT PAGE PHOTO + HANDWRITING
========================================= */

.about-page-photo {
  position: relative;
  padding: 11px;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 26px 62px rgba(4, 26, 56, 0.19);
  overflow: hidden;
}

.about-page-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.about-page-photo::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 11px;
  z-index: 1;
  height: 48%;
  border-radius: 0 0 19px 19px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(3, 20, 47, 0.10) 25%,
    rgba(3, 20, 47, 0.48) 60%,
    rgba(3, 20, 47, 0.94) 100%
  );
  pointer-events: none;
}

.about-page-photo-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #ffffff;
  background: rgba(3,20,47,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  transition: transform .35s ease, box-shadow .35s ease;
}

.about-page-photo-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0,0,0,.34);
}

.about-page-photo-badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 20px 0 0 20px;
  background: #f3bf3f;
}

.about-page-photo-badge strong {
  padding-left: 10px;
  color: #f3bf3f;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-page-photo-badge span {
  padding-left: 10px;
  color: #eef3fb;
  font-size: 1rem;
  font-weight: 700;
}

.handwriting-story {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 52px;
  z-index: 3;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
}

.handwriting-story p {
  max-width: 950px;
  margin: 0 auto;
  color: #ffffff;
  font-family: "Caveat", cursive;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.3;
  text-shadow:
    0 2px 8px rgba(0,0,0,.80),
    0 0 18px rgba(0,0,0,.45);
}

.handwriting-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) rotate(-2deg);
  filter: blur(3px);
}

.handwriting-story.is-writing .handwriting-word {
  animation:
    revealHandwritingWord .55s
    cubic-bezier(.22, 1, .36, 1)
    forwards;
  animation-delay: var(--word-delay);
}

@keyframes revealHandwritingWord {
  0% {
    opacity: 0;
    transform: translateY(12px) rotate(-2deg);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}

@media (max-width: 650px) {
  .about-page-photo {
    min-height: 0 !important;
    padding: 7px;
    border-radius: 19px;
  }

  .about-page-photo img {
    width: 100% !important;
    height: auto !important;
    object-fit: initial !important;
    border-radius: 13px;
  }

  .about-page-photo::after {
    left: 7px;
    right: 7px;
    bottom: 7px;
    height: 54%;
    border-radius: 0 0 13px 13px;
  }

  .about-page-photo-badge {
    top: 16px;
    bottom: auto !important;
    left: 16px !important;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .about-page-photo-badge strong {
    font-size: .82rem;
  }

  .about-page-photo-badge span {
    font-size: .75rem;
  }

  .about-page-photo .handwriting-story {
    left: 6% !important;
    right: 6% !important;
    bottom: 34px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .about-page-photo .handwriting-story p {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    line-height: 1.35;
  }
}


/* FULL STORY */

.about-full-story {
  padding: 20px 0 80px;

  background: #ffffff;
}

.about-story-reading-container {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.about-reading-label {
  display: block;

  color: #d58d0d;

  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story-reading-container > h2 {
  max-width: 780px;
  margin: 14px auto 48px;

  text-align: center;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.12;
}

.about-reading-content {
  padding: 52px 58px;

  border: 1px solid #e1e8ef;
  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 20px 50px rgba(4, 26, 56, 0.1);
}

.about-reading-content p {
  margin: 0 0 24px;

  color: #58677a;

  font-size: 1.03rem;
  line-height: 1.95;
}

.about-reading-content p:last-child {
  margin-bottom: 0;
}


/* FINAL QUOTE */

.about-final-quote {
  margin: 55px 0 0;
  padding: 50px 42px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #041a38,
      #07508e
    );

  color: #ffffff;

  text-align: center;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.55;

  box-shadow:
    0 20px 48px rgba(4, 26, 56, 0.2);
}

.about-final-quote span {
  display: block;

  margin-top: 20px;

  color: #f3bf3f;

  font-size: 0.88rem;
  letter-spacing: 0.08em;
}


/* MOBILE */

@media (max-width: 650px) {

  .about-page-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .about-page-brand span {
    display: none;
  }

  .about-page-hero {
    padding: 65px 0 50px;
  }

  .about-page-photo {
    padding: 7px;

    border-radius: 19px;
  }

  .about-page-photo img {
    border-radius: 13px;
  }

  .about-page-photo-badge {
    bottom: 16px;
    left: 16px;

    padding: 10px 12px;
  }

  .handwriting-story {
    min-height: 180px;
    margin-top: 38px;
    padding: 10px 5px;
  }

  .about-full-story {
    padding: 72px 0 80px;
  }

  .about-reading-content {
    padding: 32px 23px;

    border-radius: 20px;
  }

  .about-reading-content p {
    font-size: 0.97rem;
    line-height: 1.82;
  }

  .about-final-quote {
    padding: 40px 23px;

    border-radius: 20px;
  }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

  .handwriting-word {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .handwriting-story.is-writing .handwriting-word {
    animation: none;
  }

}
/* =========================================
   IMPACT SHOWCASE
========================================= */

.impact-showcase {
  padding: 90px 0;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f2f6fa 100%
    );
}

.impact-showcase-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}


/* IMAGE */

.impact-showcase-image {
  padding: 10px;

  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 22px 55px rgba(4, 26, 56, 0.17);

  overflow: hidden;
}

.impact-showcase-image img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 18px;
}


/* TEXT BELOW IMAGE */
/* ===== HANDWRITTEN MOTTO ===== */

.impact-showcase-content{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.motto-line{

    margin:0;

    font-family:'Caveat',cursive;

    font-size:clamp(2.8rem,5vw,5rem);

    font-weight:700;

    color:#e8edf4;

    opacity:0;

    transform:translateY(25px);

    filter:blur(5px);

}

.gold{

    color:#f4c542;

}


/* TABLET */

@media (max-width: 900px) {

  .impact-showcase {
    padding: 75px 0;
  }

  .impact-showcase-content {
    margin-top: 30px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .impact-showcase {
    padding: 60px 0;
  }

  .impact-showcase-container {
    width: min(100% - 26px, 1180px);
  }

  .impact-showcase-image {
    padding: 7px;

    border-radius: 19px;
  }

  .impact-showcase-image img {
    border-radius: 13px;
  }

  .impact-showcase-content {
    margin-top: 25px;
  }

  .impact-showcase-content h2 {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
    line-height: 1.12;
  }

}
#clubMotto.show .motto-line{

    animation:

    writeLine 1.2s ease forwards;

}

#clubMotto.show .motto-line:nth-child(1){

    animation-delay:.4s;

}

#clubMotto.show .motto-line:nth-child(2){

    animation-delay:2s;

}

#clubMotto.show .motto-line:nth-child(3){

    animation-delay:3.6s;

}

@keyframes writeLine{

0%{

opacity:0;

transform:translateY(25px);

filter:blur(5px);

}

100%{

opacity:1;

transform:translateY(0);

filter:blur(0);

}

}/* =========================================================
   CLUB MOTTO — AUTOMATIC LINE-BY-LINE ANIMATION
========================================================= */

#clubMotto {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 20;

    margin-top: 30px;
    text-align: center;
}

#clubMotto .motto-line {
    display: block !important;

    margin: 0;

    font-family: "Caveat", cursive !important;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;

    color: #e7edf5;

    opacity: 0;
    visibility: visible !important;

    transform: translateY(25px);

    animation-name: mottoReveal;
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

#clubMotto .motto-line:nth-child(1) {
    animation-delay: 0.4s;
}

#clubMotto .motto-line:nth-child(2) {
    animation-delay: 1.8s;
    color: #f4c542;
}

#clubMotto .motto-line:nth-child(3) {
    animation-delay: 3.2s;
}

@keyframes mottoReveal {

    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
   PHOTO MOTTO OVERLAY
========================================================= */

.impact-showcase {
    padding: 70px 24px;
    background: #ffffff;
}

.impact-showcase-container {
    width: min(1760px, 100%);
    margin: 0 auto;
}

.impact-showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(10, 25, 50, 0.18);
}

.impact-showcase-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* black cloud/fade starts around players' knees */

.impact-black-fade {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 48%;

    background:
        radial-gradient(
            ellipse at 15% 100%,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.78) 38%,
            transparent 72%
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.82) 42%,
            transparent 74%
        ),
        radial-gradient(
            ellipse at 85% 100%,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.78) 38%,
            transparent 72%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.88) 35%,
            rgba(0, 0, 0, 0.45) 68%,
            transparent 100%
        );

    z-index: 1;
    pointer-events: none;
}

.impact-showcase-content {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.motto-line {
    margin: 0;

    font-family: "Caveat", cursive;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    font-weight: 700;
    line-height: 0.98;
    white-space: nowrap;

    color: #edf2f7;

    opacity: 0;
    transform: translateX(-45px);

    text-shadow:
        0 3px 3px rgba(0, 0, 0, 0.95),
        0 0 16px rgba(255, 255, 255, 0.15);

    animation: mottoSlideIn 0.9s ease forwards;
}

.motto-line:nth-child(1) {
    animation-delay: 0.4s;
}

.motto-line:nth-child(2) {
    animation-delay: 1.5s;
}

.motto-line:nth-child(3) {
    animation-delay: 2.6s;
}

.motto-gold {
    color: #f1b81b;

    text-shadow:
        0 3px 3px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(241, 184, 27, 0.35);
}

@keyframes mottoSlideIn {

    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 700px) {

    .impact-showcase {
        padding: 35px 12px;
    }

    .impact-showcase-image {
        border-radius: 18px;
    }

    .impact-black-fade {
        height: 58%;
    }

    .impact-showcase-content {
        right: 12px;
        bottom: 14px;
        left: 12px;
    }

    .motto-line {
        font-size: clamp(1.7rem, 8vw, 2.7rem);
        line-height: 1;
    }
}
/* =========================================================
   FINAL MOTTO LAYOUT FIX
========================================================= */

/* Three motto phrases in one horizontal row */
#clubMotto,
.impact-showcase-content {
    position: absolute !important;
    right: 30px !important;
    bottom: 30px !important;
    left: 30px !important;

    z-index: 5 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    gap: 28px !important;

    width: auto !important;
    margin: 0 !important;
}

/* Individual motto */
#clubMotto .motto-line {
    flex: 1 1 0;

    display: block !important;

    margin: 0 !important;

    font-family: "Caveat", cursive !important;
    font-size: clamp(2rem, 3.2vw, 4rem) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;

    color: #f1f4f8 !important;

    opacity: 0;

    filter: none !important;
    transform: translateX(-35px);

    text-shadow:
        0 2px 2px rgba(0, 0, 0, 1),
        0 0 8px rgba(255, 255, 255, 0.3) !important;

    animation: horizontalMottoReveal 0.85s ease forwards !important;
}

/* Gold middle motto */
#clubMotto .motto-line:nth-child(2),
#clubMotto .motto-gold {
    color: #f2bb22 !important;

    text-shadow:
        0 2px 2px rgba(0, 0, 0, 1),
        0 0 10px rgba(242, 187, 34, 0.45) !important;
}

/* One after another */
#clubMotto .motto-line:nth-child(1) {
    animation-delay: 0.3s !important;
}

#clubMotto .motto-line:nth-child(2) {
    animation-delay: 1.25s !important;
}

#clubMotto .motto-line:nth-child(3) {
    animation-delay: 2.2s !important;
}

@keyframes horizontalMottoReveal {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bottom community description */
.hero-description {
    display: block !important;

    max-width: 1100px !important;
    margin: 38px auto 20px !important;
    padding: 0 24px !important;

    color: #102a4c !important;

    font-size: clamp(1rem, 1.5vw, 1.35rem) !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
    text-align: center !important;

    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    text-shadow: none !important;
}
/* Remove unnecessary blank space below motto photo */

.impact-showcase {
    padding-bottom: 45px !important;
}

.programs-section {
    padding-top: 70px !important;
}

@media (max-width: 700px) {

    .impact-showcase {
        padding-bottom: 25px !important;
    }

    .programs-section {
        padding-top: 50px !important;
    }
}
/* =========================================================
   COMMUNITY EVENT STORY SECTIONS
========================================================= */

.community-events-section {
    padding: 90px 24px;
    background: #f5f7fb;
}

.community-event-list {
    display: flex;
    flex-direction: column;
    gap: 70px;

    margin-top: 55px;
}

.community-event-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 55px;

    padding: 30px;

    background: #ffffff;
    border-radius: 24px;

    box-shadow:
        0 18px 45px rgba(10, 35, 70, 0.1);
}

.community-event-row.reverse .community-event-image {
    order: 2;
}

.community-event-row.reverse .community-event-content {
    order: 1;
}

.community-event-image {
    overflow: hidden;

    min-height: 360px;
    border-radius: 18px;
}

.community-event-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 360px;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.community-event-row:hover .community-event-image img {
    transform: scale(1.035);
}

.community-event-content {
    padding: 15px 10px;
}

.community-event-label {
    display: inline-block;

    margin-bottom: 14px;
    padding: 7px 13px;

    background: rgba(241, 184, 27, 0.14);
    border-radius: 999px;

    color: #a26d00;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.community-event-content h3 {
    margin: 0 0 18px;

    color: #102a4c;

    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    line-height: 1.15;
}

.community-event-content p {
    margin: 0 0 14px;

    color: #4a586b;

    font-size: 1rem;
    line-height: 1.8;
}

.community-event-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {

    .community-events-section {
        padding: 65px 18px;
    }

    .community-event-list {
        gap: 38px;
    }

    .community-event-row {
        grid-template-columns: 1fr;
        gap: 24px;

        padding: 18px;
    }

    .community-event-row.reverse .community-event-image,
    .community-event-row.reverse .community-event-content {
        order: initial;
    }

    .community-event-image,
    .community-event-image img {
        min-height: 260px;
    }

    .community-event-content {
        padding: 8px 4px 14px;
    }
}
/* =========================================================
   FINAL COMMUNITY EVENTS DESIGN OVERRIDE
========================================================= */

body .community-events-section {
    display: block !important;
    width: 100% !important;
    padding: 90px 20px !important;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(13, 79, 145, 0.08),
            transparent 30%
        ),
        #f4f7fb !important;
}

body .community-events-section .container {
    width: min(1180px, 100%) !important;
    margin: 0 auto !important;
}

body .community-event-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 55px !important;
    margin-top: 55px !important;
}

body .community-event-row {
    position: relative !important;

    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
    align-items: stretch !important;
    gap: 0 !important;

    width: 100% !important;
    min-height: 390px !important;
    padding: 0 !important;
    margin: 0 !important;

    overflow: hidden !important;

    background: #ffffff !important;
    border: 1px solid rgba(15, 42, 76, 0.1) !important;
    border-radius: 26px !important;

    box-shadow:
        0 25px 65px rgba(15, 42, 76, 0.13) !important;
}

body .community-event-row::before {
    content: "" !important;

    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 7px !important;
    height: 100% !important;

    background: linear-gradient(
        180deg,
        #e2ac28,
        #0d4f91
    ) !important;

    z-index: 4 !important;
}

body .community-event-image {
    position: relative !important;

    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 390px !important;

    overflow: hidden !important;
    border-radius: 0 !important;
}

body .community-event-image::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background: linear-gradient(
        90deg,
        transparent 65%,
        rgba(255, 255, 255, 0.25)
    ) !important;

    pointer-events: none !important;
}

body .community-event-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 390px !important;

    object-fit: cover !important;
    object-position: center !important;

    border-radius: 0 !important;

    transition:
        transform 0.45s ease,
        filter 0.45s ease !important;
}

body .community-event-row:hover .community-event-image img {
    transform: scale(1.045) !important;
    filter: brightness(1.04) !important;
}

body .community-event-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    padding: 46px 48px !important;

    background: #ffffff !important;
}

body .community-event-label {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;

    margin: 0 0 16px !important;
    padding: 8px 14px !important;

    background: rgba(226, 172, 40, 0.14) !important;
    border: 1px solid rgba(226, 172, 40, 0.28) !important;
    border-radius: 999px !important;

    color: #946500 !important;

    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

body .community-event-content h3 {
    margin: 0 0 20px !important;

    color: #102a4c !important;

    font-family: inherit !important;
    font-size: clamp(1.65rem, 2.4vw, 2.45rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
}

body .community-event-content p {
    margin: 0 0 14px !important;

    color: #536175 !important;

    font-size: 1rem !important;
    line-height: 1.75 !important;
}

body .community-event-content p:last-child {
    margin-bottom: 0 !important;
}

/* Alternate cards */

body .community-event-row.reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
}

body .community-event-row.reverse .community-event-image {
    order: 2 !important;
}

body .community-event-row.reverse .community-event-content {
    order: 1 !important;
}

body .community-event-row.reverse::before {
    left: auto !important;
    right: 0 !important;
}

/* Mobile */

@media (max-width: 850px) {

    body .community-events-section {
        padding: 65px 15px !important;
    }

    body .community-event-list {
        gap: 32px !important;
        margin-top: 40px !important;
    }

    body .community-event-row,
    body .community-event-row.reverse {
        display: flex !important;
        flex-direction: column !important;

        min-height: 0 !important;
        border-radius: 20px !important;
    }

    body .community-event-row.reverse .community-event-image,
    body .community-event-row.reverse .community-event-content {
        order: initial !important;
    }

    body .community-event-image,
    body .community-event-image img {
        height: 260px !important;
        min-height: 260px !important;
    }

    body .community-event-content {
        padding: 28px 24px 32px !important;
    }

    body .community-event-content h3 {
        font-size: 1.65rem !important;
    }

    body .community-event-row.reverse::before {
        left: 0 !important;
        right: auto !important;
    }
}
@media (max-width: 800px) {

    #clubMotto,
    .impact-showcase-content {
        right: 12px !important;
        bottom: 15px !important;
        left: 12px !important;
        gap: 8px !important;
    }

    #clubMotto .motto-line {
        font-size: clamp(
            1rem,
            4.5vw,
            1.8rem
        ) !important;
    }

    .hero-description {
        margin-top: 25px !important;
        font-size: 1rem !important;
    }
}
/* =========================================
   ABOUT PAGE PHOTO — CLEAN OVERLAY
========================================= */

/* The existing photo frame remains unchanged.
   This block controls only the dark fade and handwriting position. */
.about-page-photo::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 11px;
    height: 48%;
    border-radius: 0 0 19px 19px;
    background: linear-gradient(
        to bottom,
        rgba(2, 12, 28, 0) 38%,
        rgba(2, 12, 28, 0.28) 57%,
        rgba(2, 12, 28, 0.66) 76%,
        rgba(2, 12, 28, 0.94) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.about-page-photo-badge {
    z-index: 4;
}

.about-page-photo .handwriting-story {
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 54px;
    z-index: 3;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    text-align: center;
}

.about-page-photo .handwriting-story p {
    max-width: 850px;
    margin: 0 auto;
    color: #ffffff;
    font-family: "Caveat", cursive;
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

@media (max-width: 600px) {
    .about-page-photo::after {
        left: 7px;
        right: 7px;
        bottom: 7px;
        height: 48%;
        border-radius: 0 0 13px 13px;
    }

    .about-page-photo .handwriting-story {
        left: 7%;
        right: 7%;
        bottom: 145px;
    }

    .about-page-photo .handwriting-story p {
        font-size: 1.05rem;
        line-height: 1.45;
    }
}

/* =========================================================
   FINAL RESPONSIVE POLISH
   Consolidated mobile overrides
   ========================================================= */

@media (max-width: 700px) {
    .section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .container {
        width: min(100% - 32px, 1180px);
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-heading h2,
    .about-content h2,
    .impact-content h2,
    .contact-information h2 {
        margin-top: 0;
        margin-bottom: 12px;
        font-size: clamp(1.9rem, 9vw, 2.55rem);
        line-height: 1.08;
    }

    .section-label {
        margin-bottom: 8px;
    }

    p {
        line-height: 1.65;
    }

    .about-story-grid,
    .program-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid { gap: 22px; }
    .program-grid { gap: 22px; }
    .gallery-grid { gap: 18px; }
    .contact-grid { gap: 28px; }

    .about-story-photo,
    .program-card {
        width: 100%;
    }
.about-story-photo img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}

    .about-story-content {
        margin-top: 0;
        padding-top: 0;
    }

    .about-story-badge {
        left: 16px;
        bottom: 16px;
    }

    .program-image { min-height: 220px; }
    .program-content { padding: 22px; }

    .gallery-item,
    .gallery-large {
        grid-column: auto;
        min-height: 260px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 100%;
    }

    .contact-form textarea { min-height: 150px; }
}



.about-story-photo{
    position:relative;
}

.about-story-badge{

    position:absolute;
    left:28px;
    bottom:28px;

    padding:22px 26px;

    background:rgba(10,18,40,.35);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:22px;

    color:#fff;

    box-shadow:
    0 12px 30px rgba(0,0,0,.28);

}

.badge-year{

    display:block;

    font-size:.9rem;

    letter-spacing:3px;

    font-weight:700;

    color:#f4c542;

    margin-bottom:10px;

}

.about-story-badge h3{

    margin:0;

    font-size:1.55rem;

    line-height:1.2;

    font-weight:800;

    color:#fff;

    text-shadow:
    0 3px 10px rgba(0,0,0,.55);

}

/* ===== Kids Camp coach layout (merged from coach-fix.css) ===== */
/* =========================================================
   HIMALAYA BALTIMORE
   KIDS CAMP – COACH PROFILE PHOTO FIX

   This file affects ONLY the coaching-team section.
========================================================= */


/* COACH GRID */

#coaches .coaches-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
}


/* COACH CARD */

#coaches .coach-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #ffffff !important;
  color: #1f2937 !important;

  border: none !important;
  border-radius: 5px !important;

  overflow: hidden !important;
  text-align: center !important;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16) !important;

  transform: none !important;
  transition: none !important;
}


/* REMOVE OLD HOVER MOVEMENT */

#coaches .coach-card:hover {
  transform: none !important;
}


/* PHOTO CONTAINER */

#coaches .coach-photo {
  position: relative !important;

  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  background: #e5e7eb !important;
}


/* ACTUAL COACH PHOTO */

#coaches .coach-photo img {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  display: block !important;

  object-fit: cover !important;
  object-position: 50% 20% !important;

  border: none !important;
  border-radius: 0 !important;

  transform: scale(1.01) !important;
}


/* COACH NAME STRIP */

#coaches .coach-card h3 {
  width: 100% !important;

  margin: 0 !important;
  padding: 12px 10px !important;

  background: #061b3a !important;
  color: #ffffff !important;

  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;

  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;

  border: none !important;
}


/* COACH DESCRIPTION */

#coaches .coach-card p {
  margin: 0 !important;
  padding: 15px 17px 19px !important;

  background: #ffffff !important;
  color: #5f6670 !important;

  font-size: 0.91rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;

  text-align: center !important;
}


/* =========================================================
   INDIVIDUAL PHOTO POSITIONING
========================================================= */


/* Chok Gurung */

#coaches .coach-chok .coach-photo img {
  object-position: 50% 18% !important;
  transform: scale(1.02) !important;
}


/* Dipak Rana */

#coaches .coach-dipak-rana .coach-photo img {
  object-position: 50% 17% !important;
  transform: scale(1.02) !important;
}


/* Raj Kumar Shrestha */

#coaches .coach-raj .coach-photo img {
  object-position: 50% 15% !important;
  transform: scale(1.03) !important;
}


/* Rakesh Gurung */

#coaches .coach-rakesh .coach-photo img {
  object-position: 50% 17% !important;
  transform: scale(1.03) !important;
}


/* Dev Gurung */

#coaches .coach-dev .coach-photo img {
  object-position: 50% 16% !important;
  transform: scale(1.02) !important;
}


/* Adhitya Ghimire */

#coaches .coach-adhitya .coach-photo img {
  object-position: 50% 17% !important;
  transform: scale(1.02) !important;
}


/* Rabin Poudel */

#coaches .coach-rabin .coach-photo img {
  object-position: 50% 16% !important;
  transform: scale(1.02) !important;
}


/* Dipak Giri */

#coaches .coach-dipak-giri .coach-photo img {
  object-position: 50% 16% !important;
  transform: scale(1.02) !important;
}


/* Amrit Gaire */

#coaches .coach-amrit .coach-photo img {
  object-position: 50% 16% !important;
  transform: scale(1.02) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

  #coaches .coaches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 560px) {

  #coaches .coaches-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  #coaches .coach-card {
    max-width: 390px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

/* =========================================================
   PRODUCTION POLISH — COMPACT SPACING, MOBILE DENSITY & A11Y
   ========================================================= */

:focus-visible {
    outline: 3px solid var(--gold, #f5c451);
    outline-offset: 3px;
}

img {
    max-width: 100%;
}

.section {
    padding-block: clamp(54px, 6vw, 82px);
}

.section-heading {
    margin-bottom: clamp(24px, 3.2vw, 42px);
}

.section-heading > :last-child {
    margin-bottom: 0;
}

@media (max-width: 820px) {
    .section {
        padding-block: 38px !important;
    }

    .section-heading {
        margin-bottom: 20px !important;
    }

    .section-heading h2 {
        margin-bottom: 8px !important;
        font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
        line-height: 1.08 !important;
    }

    .section-heading p {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
    }

    .program-grid,
    .gallery-grid,
    .contact-grid,
    .about-container,
    .impact-container {
        gap: 18px !important;
    }

    /* Keep leadership information compact: two cards per row on phones. */
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .team-card {
        min-height: 0 !important;
        padding: 14px 9px !important;
        border-radius: 13px !important;
    }

    .team-icon {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 7px !important;
        border-radius: 11px !important;
        font-size: 1.08rem !important;
    }

    .team-role {
        font-size: 0.61rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.65px !important;
    }

    .team-card h3 {
        margin-top: 5px !important;
        font-size: 0.83rem !important;
        line-height: 1.25 !important;
    }

    .advisor-list {
        gap: 2px !important;
        margin-top: 6px !important;
        font-size: 0.72rem !important;
        line-height: 1.25 !important;
    }

    .program-card,
    .gallery-item,
    .contact-form,
    .contact-information {
        margin-block: 0 !important;
    }

    /* Existing HTML preserved; badge is a small lower-left glass label. */
    .about-story-photo {
        position: relative !important;
    }

    .about-story-badge {
        left: 10px !important;
        bottom: 10px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 145px !important;
        padding: 8px 11px !important;
        display: block !important;
        border-radius: 12px !important;
        background: rgba(7, 20, 38, 0.58) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22) !important;
    }

    .about-story-badge strong {
        display: block !important;
        margin: 0 0 3px !important;
        font-size: 0.78rem !important;
        line-height: 1.05 !important;
        white-space: nowrap !important;
    }

    .about-story-badge span {
        display: block !important;
        margin: 0 !important;
        font-size: 0.58rem !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    /* Compact coaches and content cards on mobile. */
    .coaches-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 11px !important;
    }

    .coach-card {
        padding: 10px !important;
        border-radius: 13px !important;
    }

    .coach-photo {
        height: 150px !important;
        margin-bottom: 9px !important;
    }

    .coach-card h3 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .coach-card p {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }

    .footer-container {
        gap: 18px !important;
        padding-block: 30px !important;
    }
}

@media (max-width: 380px) {
    .team-grid,
    .coaches-grid {
        gap: 8px !important;
    }

    .team-card {
        padding-inline: 7px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.form-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important;}

/* =========================================================
   FINAL LAYOUT RHYTHM — JULY 2026
   Preserve the existing design while reducing excess whitespace.
   ========================================================= */

/* Balanced section rhythm across the site. */
.section {
    padding-block: clamp(50px, 5vw, 72px) !important;
}

.section-heading {
    margin-bottom: clamp(22px, 2.5vw, 34px) !important;
}

.section-heading h2 {
    margin-bottom: 10px !important;
}

/* Home page: remove the large empty band between Gallery and About. */
.gallery-section {
    padding-bottom: clamp(44px, 4vw, 62px) !important;
}

.about-story-preview {
    padding: clamp(52px, 5vw, 72px) 0 !important;
}

.about-story-heading {
    margin: 0 auto clamp(24px, 2.5vw, 34px) !important;
}

.about-story-heading span {
    margin-bottom: 10px !important;
}

.about-story-heading h2 {
    font-size: clamp(2.35rem, 4.5vw, 4.25rem) !important;
    line-height: 1.02 !important;
}

/* The homepage About image always keeps its real source ratio on every screen. */
.about-story-photo {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: 0 18px 42px rgba(4, 26, 56, 0.14) !important;
}

.about-story-photo img {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
    border-radius: 0 !important;
}

/* Keep a dark photographic fade only; no badge or glass box. */
.about-story-photo::after {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 0 0 !important;
    display: block !important;
    height: 34% !important;
    pointer-events: none !important;
    z-index: 1 !important;
    background: linear-gradient(
        to bottom,
        rgba(2, 10, 24, 0) 0%,
        rgba(2, 10, 24, 0.14) 38%,
        rgba(2, 10, 24, 0.52) 72%,
        rgba(2, 10, 24, 0.88) 100%
    ) !important;
}

.about-story-badge,
.about-page-photo-badge {
    display: none !important;
}

.about-story-content {
    margin: clamp(24px, 2.5vw, 34px) auto 0 !important;
}

.about-story-content p {
    margin-bottom: 12px !important;
    line-height: 1.72 !important;
}

.about-story-link {
    margin-top: 8px !important;
}

/* Homepage team-photo cloud: retained, but slightly lighter. */
.impact-black-fade {
    height: 48% !important;
    background:
        radial-gradient(ellipse at 15% 100%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 38%, transparent 72%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.96) 0%, rgba(0,0,0,.78) 42%, transparent 74%),
        radial-gradient(ellipse at 85% 100%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 38%, transparent 72%),
        linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 36%, rgba(0,0,0,.34) 68%, transparent 100%) !important;
}

/* Reduce oversized gaps around homepage feature areas. */
.programs-section {
    padding-top: clamp(48px, 5vw, 68px) !important;
}

.team-section {
    padding-block: clamp(50px, 5vw, 70px) !important;
}

.home-tournaments-section {
    padding-block: clamp(52px, 5vw, 74px) !important;
}

.contact-section {
    padding-block: clamp(52px, 5vw, 74px) !important;
}

/* Compact mobile reading without making text cramped. */
@media (max-width: 820px) {
    .section {
        padding-block: 34px !important;
    }

    .section-heading {
        margin-bottom: 18px !important;
    }

    .section-heading h2 {
        font-size: clamp(1.72rem, 7.6vw, 2.2rem) !important;
        line-height: 1.06 !important;
    }

    .section-heading > p:last-child {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .about-story-preview {
        padding: 38px 0 42px !important;
    }

    .about-story-container {
        width: min(100% - 24px, 1180px) !important;
    }

    .about-story-heading {
        margin-bottom: 20px !important;
    }

    .about-story-heading h2 {
        font-size: clamp(2rem, 10vw, 2.75rem) !important;
    }

    .about-story-photo {
        border-radius: 14px !important;
        box-shadow: 0 12px 28px rgba(4, 26, 56, 0.13) !important;
    }

    .about-story-photo::after {
        height: 38% !important;
    }

    .about-story-content {
        margin-top: 20px !important;
    }

    .about-story-content p {
        font-size: 0.92rem !important;
        line-height: 1.58 !important;
        margin-bottom: 10px !important;
    }

    .gallery-section {
        padding-bottom: 34px !important;
    }

    .gallery-grid {
        gap: 12px !important;
    }

    .gallery-item,
    .gallery-large {
        min-height: 0 !important;
        height: 220px !important;
        border-radius: 15px !important;
    }

    /* Two compact leadership cards per row, avoiding one-name-per-screen layouts. */
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .team-card {
        min-height: 0 !important;
        padding: 12px 8px !important;
    }

    .team-card h3 {
        margin-top: 4px !important;
        font-size: 0.8rem !important;
        line-height: 1.18 !important;
    }

    .team-role {
        font-size: 0.59rem !important;
        line-height: 1.15 !important;
    }

    .team-icon {
        width: 35px !important;
        height: 35px !important;
        margin-bottom: 6px !important;
    }

    .program-grid,
    .contact-grid {
        gap: 16px !important;
    }

    .program-content {
        padding: 18px !important;
    }

    .home-tournaments-section,
    .contact-section,
    .team-section,
    .programs-section {
        padding-block: 36px !important;
    }

    .impact-showcase {
        padding-bottom: 22px !important;
    }
}

@media (max-width: 430px) {
    .gallery-item,
    .gallery-large {
        height: 205px !important;
    }

    .about-story-container,
    .container {
        width: min(100% - 22px, 1180px) !important;
    }
}



/* Accessible semantic headings used for search engines and screen readers */
.seo-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* Final mobile-only team-photo adjustment */
@media (max-width: 820px) {
  .impact-black-fade {
    height: 46% !important;
  }
}
