/* ==========================================
   OUTREACH PAGE STYLES (COMPACT & CRISP)
   ========================================== */

:root {
    --outreach-bg: #fdfdfb;
    --outreach-green: #3a5a40;
    --outreach-accent: #588157;
    --outreach-text: #344e41;
}

.outreach-page {
    background: var(--outreach-bg);
    color: var(--outreach-text);
    font-size: 0.95rem;
    /* Slightly smaller overall text scale */
}

.outreach-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Compact Hero --- */
.outreach-hero {
    position: relative;
     height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.outreach-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/outreach/out1.JPG');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.6) saturate(0.8);
    z-index: 1;
}

.outreach-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--outreach-bg), transparent);
    z-index: 2;
}

.outreach-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 1rem;
}

.outreach-hero h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* --- Intro Section --- */
.outreach-intro {
    padding: 60px 0;
    text-align: center;
}

.intro-box {
    max-width: 800px;
    margin: 0 auto;
}

.intro-box p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--outreach-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.intro-box .sub-intro {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Initiatives Grid --- */
.outreach-initiatives {
    padding: 40px 0 80px;
}

.initiative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.initiative-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--outreach-green);
    line-height: 1.3;
}

.card-body p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--outreach-accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    color: var(--outreach-green);
}

/* --- Contact Strip --- */
.outreach-contact {
    padding: 60px 0 100px;
}

.contact-strip {
    background: var(--outreach-green);
    padding: 50px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.contact-strip h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-strip p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-solid {
    display: inline-block;
    padding: 12px 35px;
    background: white;
    color: var(--outreach-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .initiative-grid {
        grid-template-columns: 1fr;
    }

    .outreach-hero h1 {
        font-size: 2rem;
    }

    .contact-strip {
        padding: 40px 20px;
    }
}
/* Decorative Illustration Overlay */
.outreach-page-illustration {
    position: absolute;
    top:1695px;
    left: -120px;
    z-index: 100;
    width: clamp(280px, 40vw, 550px);
    transform: rotate(0deg);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.outreach-page-illustration img {
    width: 95%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .outreach-page-illustration {
        width: 200px;
        left: -50px;
        bottom: 100px;
    }
}
