/* =========================================
   GENERAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #000000;

    font-family: "Montserrat", sans-serif;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.site {
    width: 100%;
}
/* =========================
   MOBILE MENU OVERLAY
========================= */

.menu-overlay {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #ffffff;

    z-index: 9999;
}

.menu-overlay.active {
    display: block;
}

.menu-content {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    width: 79px;

    margin-left: 59px;
    padding-top: 45px;

    gap: 24px;
}

.menu-item {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 79px;
}

.menu-item a {
    color: #000000;

    text-decoration: none;

    text-align: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: normal;
}

.menu-item.active a {
    font-weight: 500;
}

.menu-line {
    display: block;

    width: 79px;
    height: 2px;

    margin-top: 4px;

    background: #FED94D;

    border-radius: 2px;
}
/* =========================================
   HEADER
========================================= */

.header {
    width: 100%;
    max-width: 1200px;

    min-height: 72px;

    margin: 0 auto;

    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;

    gap: 8px;
}

/* Profile image */

.profile-image {
    width: 48px;
    height: 48px;

    object-fit: cover;

    border-radius: 50%;
}

/* Hamburger button */

.menu-button {
    width: 48px;
    height: 48px;

    padding: 10px;

    border: none;
    border-radius: 50%;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 5px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    background: #000000;
}

/* Apply button */

.apply-button {
    min-width: 108px;
    min-height: 48px;

    padding: 12px 20px;

    background: #fed94d;

    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 500;
}

/* =========================================
   HERO
========================================= */

.hero {
    width: calc(100% - 32px);

    max-width: 1200px;

    margin: 0 auto 48px;
}

.hero img {
    width: 100%;

    height: 676px;

    object-fit: cover;

    border-radius: 20px;
}



/* =========================================
   MISSION & VISION
========================================= */

.mission-section {
    padding: 64px 16px;

    background: #fed94d;
}

.mission-section h2,
.core-values h2,
.impact-section h2,
.strategy-section h2 {
    margin: 0 0 32px;

    text-align: center;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 700;
}

.mission-grid {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.mission-card {
    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;
}

.mission-card img {
    width: 100%;

    height: 280px;

    object-fit: cover;
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    margin: 0 0 8px;

    font-size: 18px;

    font-weight: 500;
}

.card-content p {
    margin: 0;

    font-size: 14px;

    line-height: 1.45;
}

/* =========================================
   CORE VALUES
========================================= */

.core-values {
    width: calc(100% - 32px);

    max-width: 1100px;

    margin: 0 auto;

    padding: 64px 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

    /* ---------- SPONSOR ---------- */

    .sponsor-section {
        width: calc(100% - 32px);

        display: flex;

        flex-direction: column;

        gap: 16px;

        margin-bottom: 48px;
    }

    .sponsor-image img {
        height: 470px;
    }

    .sponsor-content h1 {
        font-size: 24px;
    }

    .sponsor-content p {
        font-size: 16px;

        line-height: 1.5;
    }

    /* ---------- MISSION ---------- */

    .mission-section {
        padding: 32px 16px;
    }

    .mission-section h2,
    .core-values h2,
    .impact-section h2 {
        font-size: 32px;
    }

    .mission-grid {
        display: flex;

        flex-direction: column;

        gap: 20px;
    }

    .mission-card img {
        height: 220px;
    }

    /* ---------- CORE VALUES ---------- */

    .core-values {
        width: calc(100% - 32px);

        padding: 32px 0;
    }

    .values-list {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 24px;
    }

    .value-card {
        width: 275px;
    }

  

/* =========================
   CURRENT IMPACT
========================= */

.impact-section {
    width: 100%;
    padding: 64px 16px;
    background: #ffffff;
}

.impact-section h2 {
    margin: 0 0 40px;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.impact-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 50px;
}

.impact-item {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.impact-item img {
    display: block;

    width: 100%;
    height: 361px;

    object-fit: cover;
    border-radius: 20px;
}

.impact-item p {
    display: block;

    width: 100%;
    margin: 0;

    font-size: 20px;
    line-height: 1.45;

    text-align: justify;
}

    /* ---------- STRATEGIC ALIGNMENT ---------- */

    .strategy-section {
        padding: 32px 0;
    }

    .strategy-section h2 {
        padding: 0 16px;

        font-size: 28px;
    }

    .strategy-list {
        display: flex;

        flex-direction: column;

        gap: 24px;
    }

    .strategy-card {
        border-radius: 0;

        padding: 16px;
    }

    .strategy-card img {
        height: 271px;
    }

    .strategy-card p {
        font-size: 24px;

        line-height: 1.4;
    }

    /* ---------- DONATION ---------- */

    .donation-section {
        width: calc(100% - 32px);

        padding: 32px 0;
    }

    .donation-section h2 {
        font-size: 20px;
    }

    /* ---------- FOOTER ---------- */

    .footer {
        width: calc(100% - 32px);

        grid-template-columns: 1fr 1fr;

        padding: 32px 0;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }



/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .strategy-card p {
        font-size: 20px;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

}

.values-list {
display: grid;

    grid-template-columns: repeat(2, 275px);

    justify-content: center;

    gap: 24px;
}

.value-card {
    background: #fed94d;

    border-radius: 160px 160px 20px 20px;

    overflow: hidden;

    padding-bottom: 16px;
}

.value-card img {
    width: 100%;

    height: 273px;

    object-fit: cover;

    border-radius: 50%;
}

.value-content {
    padding: 16px;
}

.value-content h3 {
    margin: 0 0 8px;

    font-size: 18px;

    font-weight: 500;
}

.value-content p {
    margin: 0;

    font-size: 14px;

    line-height: 1.45;
}

/* =========================================
   CURRENT IMPACT
========================================= */

.impact-section {
    width: calc(100% - 32px);

    max-width: 1100px;

    margin: 0 auto;

    padding: 32px 0 64px;
}

.impact-item {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;

    align-items: center;

    margin-bottom: 38px;
}

.impact-item img {
    width: 100%;

    height: 361px;

    object-fit: cover;

    border-radius: 20px;
}

.impact-item p {
    margin: 0;

    font-size: 20px;

    line-height: 1.45;

    text-align: justify;
}

/* =========================================
   STRATEGIC ALIGNMENT
========================================= */

.strategy-section {
    padding: 64px 16px;
}

.strategy-list {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.strategy-card {
    padding: 16px;

    background: #fed94d;

    border-radius: 20px;
}

.strategy-card:nth-child(even) {
    background: #ffffff;
}

.strategy-card img {
    width: 100%;

    height: 271px;

    object-fit: cover;

    border-radius: 20px;
}

.strategy-card p {
    margin: 16px 0 0;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 600;
}

.strategy-card strong {
    font-weight: 700;
}



/* =========================================
   FOOTER
========================================= */

.donation-section {
    width: calc(100% - 32px);

    max-width: 1100px;

    margin: 0 auto;

    padding: 48px 0 64px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 24px;
}
.donation-section {
    grid-column: 1/ -1;
}

.footer .footer-column:nth-of-type(1),
.footer .footer-column:nth-of-type(2) {
    grid-column: auto;
}
.footer .footer-column:last-child {
    grid-column: 1 / -1;
}
.donation-profile {
    width: 63px;
    height: 63px;

    object-fit: cover;

    border-radius: 50%;
}

.donation-section h2 {
    max-width: 420px;

    margin: 0;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 500;

    text-align: center;
}



.footer {
    width: calc(100% - 32px);

    max-width: 1100px;

    margin: 0 auto;

    padding: 32px 0 48px;
    
    background: #ffffff;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 32px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    margin: 0;

    font-size: 16px;

    font-weight: 500;
}

.footer-column a,
.footer-column p {
    margin: 0;

    font-size: 14px;

    line-height: 1.5;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */

@media (max-width: 768px) {

    /* ---------- HEADER ---------- */

    .header {
        width: 100%;

        padding: 12px 16px;
    }

    .profile-image {
        width: 40px;
        height: 40px;
    }

    .menu-button {
        width: 40px;
        height: 40px;
    }

    .apply-button {
        min-width: 92px;

        min-height: 40px;

        padding: 8px 12px;

        font-size: 12px;
    }
}
    /* ---------- HERO ---------- */

    .hero {
        width: calc(100% - 32px);

        margin-bottom: 28px;
    }

    .hero img {
        height: auto;

        aspect-ratio: 361 / 676;

        border-radius: 20px
    }
    .core-values .values-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
    }
    .core-values .value-card {
        width: 275px;
    }
  



