
:root{
    --green:#0f8a43;
    --green-dark:#06652f;
    --green-light:#16c85f;
    --gold:#f4c542;
    --white:#ffffff;
    --text:#222;
    --light:#f8f9fa;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:var(--text);
}

/* ==========================
   NAVBAR
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(15,138,67,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,.15);
}

.navbar{
    max-width:1300px;
    margin:auto;
    padding:18px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    font-size:1.6rem;
    font-weight:800;
}

.logo span{
    color:var(--gold);
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

.hamburger{
    display:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

/* ==========================
   HERO
========================== */

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    max-width:1400px;
    margin:auto;
    padding:120px 50px 50px;
    gap:50px;
}

.page-hero{
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;

    /* THIS IS THE IMAGE */
    background-image:
        linear-gradient(rgba(6,101,47,0.75), rgba(6,101,47,0.75)),
        url("img/blackppjpg.jpg");

    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
}

.hero-overlay{
    width:100%;
}

.page-hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.page-hero p{
    max-width:800px;
    margin:auto;
    font-size:1.1rem;
    line-height:1.8;
}

.hero-text h4{
    color:var(--green);
    font-size:1rem;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hero-text h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.hero-text p{
    font-size:1.1rem;
    color:#555;
    margin-bottom:35px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:linear-gradient(45deg,var(--green),var(--green-light));
    color:white;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid var(--green);
    color:var(--green);
}

.btn-outline:hover{
    background:var(--green);
    color:white;
}

.hero-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ==========================
   SECTION TITLE
========================== */

.section{
    padding:100px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:2.8rem;
    color:var(--green);
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    max-width:700px;
    margin:0 auto 60px;
}

/* ==========================
   VALUES
========================== */

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.value-card{
    background:white;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-icon{
    font-size:3rem;
    margin-bottom:20px;
}

.value-card h3{
    color:var(--green);
    margin-bottom:15px;
}

/* ==========================
   STORY
========================== */

.story{
    background:var(--light);
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.story-grid img{
    width:100%;
    border-radius:20px;
}

.story-content h2{
    color:var(--green);
    font-size:2.5rem;
    margin-bottom:20px;
}

.story-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

/* ==========================
   IMPACT
========================== */

.impact{
    background:linear-gradient(135deg,var(--green-dark),var(--green));
    color:white;
}

.impact .section-title{
    color:white;
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    text-align:center;
}

.stat-box h2{
    font-size:4rem;
    font-weight:800;
}

.stat-box p{
    font-size:1.1rem;
}

/* ==========================
   QUOTE
========================== */

.quote{
    text-align:center;
    background:white;
}

.quote-box{
    max-width:900px;
    margin:auto;
}

.quote-box h2{
    font-size:2.3rem;
    line-height:1.6;
    color:var(--green);
}

.quote-box p{
    margin-top:20px;
    color:#666;
    font-weight:600;
}

/* ==========================
   JOIN FORM
========================== */

.join{
    background:#f8fff9;
}

.join-form{
    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group input{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:1rem;
}

.join-form button{
    width:100%;
    border:none;
    cursor:pointer;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#043c1b;
    color:white;
    text-align:center;
    padding:40px 20px;
}

footer h3{
    margin-bottom:10px;
}

footer p{
    opacity:.8;
}

/* ==========================
   ABOUT PAGE
========================== */

.page-hero{
    padding:180px 20px 100px;
    text-align:center;
    background:linear-gradient(
        rgba(15,138,67,.95),
        rgba(6,101,47,.95)
    );
    color:white;
}

.page-hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.page-hero p{
    max-width:800px;
    margin:auto;
    font-size:1.1rem;
}

.light-bg{
    background:#f8fff9;
}

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.two-column p{
    margin-top:15px;
    line-height:1.8;
}

.ward-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:10px;
    overflow:hidden;
}

.ward-table th{
    background:#0f8a43;
    color:white;
}

.ward-table th,
.ward-table td{
    padding:15px;
    border:1px solid #ddd;
}

.ward-table tr:hover{
    background:#f5f5f5;
}

@media(max-width:768px){

    .page-hero h1{
        font-size:2.2rem;
    }

    .two-column{
        grid-template-columns:1fr;
    }

    .ward-table{
        display:block;
        overflow-x:auto;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    /* NAVBAR */

    .hamburger{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:rgba(15,138,67,.98);
        flex-direction:column;
        text-align:center;
        gap:0;
        display:none;
        padding:20px 0;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        padding:15px 0;
    }

    /* HERO */

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text h1{
        font-size:2.8rem;
    }

    .hero-buttons{
        justify-content:center;
    }

    .story-grid{
        grid-template-columns:1fr;
    }
}
