/* =========================================================
   COLOR PALETTE / GLOBAL VARIABLES
========================================================= */

:root {
    --background: #070707;
    --background-soft: #0d0d0d;

    --surface: #121212;
    --surface-light: #191919;

    --border: #292929;

    --text: #f5f5f5;
    --text-muted: #b6b6b6;

    --red: #b41435;
    --red-dark: #8d0f2a;
    --red-light: #d61e43;

    --gold: #ffcc32;

    --max-width: 1120px;
}


/* =========================================================
   RESET / BASE
========================================================= */

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--background);
    color: var(--text);

    line-height: 1.65;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

strong {
    color: white;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: var(--max-width);

    margin: 0 auto;

    padding: 1rem 1.5rem;

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

    gap: 2rem;
}

.site-name {
    color: white;

    font-size: 1.05rem;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;

    gap: 1.5rem;
}

nav a {
    color: var(--text-muted);

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.15s ease;
}

nav a:hover {
    color: white;
}


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

.hero {
    min-height: calc(100vh - 72px);

    padding: 4rem 1.5rem 6rem;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(180, 20, 53, 0.12),
            transparent 48%
        ),
        var(--background);
}

.hero-logo {
    width: min(430px, 82vw);
    height: min(300px, 57vw);

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

    margin-bottom: 0.75rem;
}

.hero-text {
    max-width: 850px;
}

.hero-label {
    margin: 0 0 0.7rem;

    color: var(--text-muted);

    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-size: clamp(2.7rem, 7.2vw, 5.4rem);

    line-height: 1;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 760px;

    margin: 1.5rem auto 0;

    color: var(--gold);

    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 7rem 1.5rem;
}

.section.alternate {
    background: var(--background-soft);
}

.section-content {
    max-width: var(--max-width);

    margin: 0 auto;
}

.section h2 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(2.3rem, 5vw, 4rem);

    line-height: 1.1;

    letter-spacing: -0.035em;
}

.eyebrow {
    margin: 0 0 0.8rem;

    color: var(--red-light);

    font-size: 0.85rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.section-intro {
    max-width: 760px;

    margin-top: 1.5rem;

    color: var(--text-muted);

    font-size: 1.12rem;
}


/* =========================================================
   ABOUT
========================================================= */

.about-content {
    max-width: 900px;
}

.about-content > p:not(.eyebrow) {
    max-width: 800px;

    color: var(--text-muted);

    font-size: 1.12rem;
}

.about-content > p:first-of-type {
    margin-top: 0;
}

.about-content strong {
    color: white;
}

.about-emphasis {
    margin: 2.5rem 0;

    color: white !important;

    font-size: clamp(1.7rem, 4vw, 2.5rem) !important;

    line-height: 1.3;
}


/* =========================================================
   OUR PURPOSE
========================================================= */

.purpose-content {
    max-width: var(--max-width);
}

.purpose-intro {
    max-width: 760px;

    margin-top: 1.5rem;

    color: var(--text-muted);

    font-size: 1.12rem;
}

.purpose-grid {
    margin-top: 3.5rem;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.5rem;
}

.purpose-item {
    border-top: 3px solid var(--red);

    padding-top: 1.5rem;
}

.purpose-item h3 {
    margin: 0 0 0.75rem;

    font-size: 1.5rem;
}

.purpose-item p {
    margin: 0;

    color: var(--text-muted);
}


/* =========================================================
   ACTIVITIES / WHAT WE DO
========================================================= */

.activity-grid {
    margin-top: 3rem;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;
}

.activity {
    padding: 1.8rem;

    border-top: 3px solid var(--red);

    background: var(--surface);
}

.activity h3 {
    margin: 0 0 0.75rem;

    font-size: 1.3rem;
}

.activity p {
    margin: 0;

    color: var(--text-muted);
}


/* =========================================================
   JOIN SECTION
========================================================= */

.join-section {
    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );
}

.join-content {
    max-width: 900px;

    text-align: center;
}

.join-content .eyebrow {
    color: var(--gold);
}

.join-content h2 {
    margin-left: auto;
    margin-right: auto;
}

.join-content > p:not(.eyebrow) {
    max-width: 680px;

    margin-left: auto;
    margin-right: auto;

    color: #f1dfe3;

    font-size: 1.15rem;
}

.join-description {
    margin-top: 0.6rem;
}


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

.social-buttons {
    margin-top: 2.5rem;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 1rem;
}

.social-button {
    min-width: 220px;

    padding: 0.95rem 1.4rem;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 0.8rem;

    background: white;

    color: #111;

    border-radius: 8px;

    font-weight: 800;

    text-decoration: none;

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

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

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}

.social-button img {
    width: 30px;
    height: 30px;

    object-fit: contain;
}


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

.site-footer {
    padding: 3rem 1.5rem 1.5rem;

    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: var(--max-width);

    margin: 0 auto;

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

    gap: 3rem;
}


/* Footer Brand */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 1rem;
}

.footer-brand img {
    width: 80px;
    height: 80px;

    object-fit: contain;
}

.footer-brand p {
    margin: 0;

    color: var(--text-muted);
}

.footer-name {
    color: white !important;

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


/* Footer Location */

.footer-location {
    text-align: right;
}

.footer-school {
    margin: 0;

    color: white;

    font-weight: 700;
}

.footer-location address {
    margin-top: 0.35rem;

    color: var(--text-muted);

    font-style: normal;
    line-height: 1.5;
}


/* Footer Bottom */

.footer-bottom {
    max-width: var(--max-width);

    margin: 2rem auto 0;

    padding-top: 1.5rem;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid #1d1d1d;

    color: #777;

    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #999;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

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


    /* Navigation */

    .nav-container {
        flex-direction: column;

        gap: 0.75rem;

        padding: 0.9rem 1rem;
    }

    nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 0.6rem 1rem;
    }

    nav a {
        font-size: 0.85rem;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    .hero-logo {
        width: min(340px, 90vw);
        height: min(238px, 63vw);
    }


    /* Sections */

    .section {
        padding: 5rem 1.25rem;
    }


    /* Our Purpose */

    .purpose-grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }


    /* Activities */

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


    /* Footer */

    .footer-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-location {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 0.6rem;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 450px) {

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

    .social-button {
        width: 100%;
    }

}