/* ---------- Variables & Reset ---------- */
:root {
    --brand-blue: #0B3A7E;
    --brand-darkblue: #071F4A;
    --brand-red: #C61E1E;
    --brand-gold: #D9A323;
    --brand-gray: #F8F9FB;
    --gold-hover: #facc15;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: #1f2937;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    display: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- Utility text colors ---------- */
.text-gold { color: var(--brand-gold); }
.text-blue { color: var(--brand-blue); }
.text-red  { color: var(--brand-red); }

/* ---------- Layout helpers ---------- */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 8rem 0;
}

.section-head {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 5rem;
}

.section-head h2 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.section-head p {
    color: #4b5563;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ---------- Eyebrow badges ---------- */
.eyebrow {
    display: inline-block;
    padding: 1.0rem 2.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.eyebrow2 {
    display: inline-block;
    padding: 1.0rem 2.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}


.eyebrow-gold {
    background: rgba(217, 163, 35, 0.10);
    color: var(--brand-gold);
}

.eyebrow-blue {
    background: rgba(11, 58, 126, 0.10);
    color: var(--brand-blue);
}

.eyebrow-gold-dark {
    background: rgba(255, 255, 255, 0.2);
    /* color: var(--brand-gold); */
    margin-bottom: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-gold {
    background: var(--brand-gold);
    color: var(--brand-darkblue);
}

.btn-gold:hover {
    background: var(--gold-hover);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--brand-darkblue);
}

.btn-sm {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-xl i {
    margin-right: 0.75rem;
}

.btn-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .btn-row {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* ---------- Gold Banner ---------- */
.gold-banner {
    width: 100%;
    background: var(--brand-gold);
    padding: 0.75rem 1rem;
    text-align: center;
}

.gold-banner p {
    color: var(--brand-darkblue);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gold-banner i {
    margin: 0 0.5rem;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7rem;
}
.header-inner img {
    width: 100px;
    height: 100px;
    margin-right: 0.75rem;
}   

.logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.875rem;
    color: var(--brand-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brand-red);
    font-size: 1.875rem;
    cursor: pointer;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
}

/* ---------- Hero ---------- */
.hero {
    width: 100%;
    background: var(--brand-darkblue);
}

.hero-text {
    padding: 4rem 1.5rem;
}

.hero-text-inner {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.hero-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 31, 74, 0.35) 0%, rgba(7, 31, 74, 0.50) 100%);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 1.5rem 2.5rem;
}

.hero-stats-grid {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 3rem;
    color: var(--brand-gold);
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

.stat-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Mission ---------- */
.mission {
    background: #fff;
}

.mission-grid {
    display: grid;
    /* grid-template-columns: 2fr; */
    display:flex;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.gold-cross{
   width:40px;
   height:40px; 
}

.mission-card {
    background: var(--brand-darkblue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 3%;
    text-align: center;
    border-bottom: 1px solid rgba(11, 58, 126, 0.30);
    transition: background-color 0.3s ease;
}

.mission-card:last-child {
    border-bottom: none;
}

.mission-card:hover {
    background: #092659;
}

.mission-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.mission-icon i {
    font-size: 2.25rem;
    color: var(--brand-gold);
}

.mission-card h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 3rem;
    color: var(--brand-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 24rem;
}

/* ---------- Impact ---------- */
.impact {
    background: var(--brand-gray);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.impact-card {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-0.5rem);
}

.impact-card > i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.icon-blue { color: var(--brand-blue); }
.icon-red  { color: var(--brand-red); }
.icon-gold { color: var(--brand-gold); }

.impact-number {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 3.75rem;
    margin-bottom: 1rem;
}

.impact-label {
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

/* ---------- Donate CTA ---------- */
.donate-cta {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 31, 74, 0.60) 0%, rgba(11, 58, 126, 0.50) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 3.75rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-sub {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 300;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.cta-contact {
    color: rgba(255, 255, 255, 0.80);
    font-size: 1.125rem;
    margin-top: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.cta-contact i {
    margin-right: 0.5rem;
}

.cta-contact .divider {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.30);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--brand-darkblue);
    padding: 5rem 1.5rem;
}

.footer-grid {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.footer-logo {
    display: block;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 28rem;
}

.social-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-row a {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.social-row a:hover {
    background: var(--brand-gold);
    color: var(--brand-darkblue);
}

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.125rem;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.70);
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--brand-gold);
}

.contact-list i {
    margin-right: 0.75rem;
    color: var(--brand-gold);
}

.footer-donate {
    margin-top: 2rem;
}

.footer-bottom {
    max-width: 1920px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.875rem;
}

/* ============================================
   Responsive breakpoints
   ============================================ */

/* md: 768px+ */
@media (min-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-card {
        border-bottom: none;
        border-right: 1px solid rgba(11, 58, 126, 0.30);
    }

    .mission-card:last-child {
        border-right: none;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* lg: 1024px+ */
@media (min-width: 1024px) {
    .container {
        padding: 0 6rem;
    }

    .header-inner {
        padding: 0 4rem;
    }

    .site-footer {
        padding: 5rem 6rem;
    }

    .gold-banner p {
        font-size: 1.25rem;
    }

    .hero-text {
        padding: 5rem 1.5rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero-sub {
        font-size: 1.5rem;
    }

    .hero-stats-grid {
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 3.75rem;
    }

    .section-head h2 {
        font-size: 3.75rem;
    }

    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-content h2 {
        font-size: 4.5rem;
    }
}