/* ================= GENERAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* ================= NAVBAR ================= */

.navbar {
    background: rgba(15, 45, 35, 0.95);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar-brand {
    font-size: 25px;
}

.navbar-brand i {
    color: #f4b942;
}

.nav-link {
    color: white !important;
    margin: 0 8px;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #f4b942 !important;
}

.btn-donate {
    background: #f4b942;
    color: #173c2d;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: bold;
}

.btn-donate:hover {
    background: white;
    color: #173c2d;
}


/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    position: relative;

    background-image: url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 25, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 80px;
}

.hero-small-title {
    color: #f4b942;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0;
}

.hero h1 span {
    color: #f4b942;
}

.hero p {
    font-size: 19px;
    max-width: 650px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary-custom {
    background: #f4b942;
    border: 2px solid #f4b942;
    color: #173c2d;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
}

.btn-primary-custom:hover {
    background: #173c2d;
    border-color: #173c2d;
    color: white;
}

.hero-buttons .btn {
    margin-right: 10px;
}


/* ================= SECTIONS ================= */

.section-label {
    color: #218c65;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title {
    color: #173c2d;
    font-weight: 700;
    font-size: 40px;
    margin: 12px 0 20px;
}

.section-description {
    max-width: 650px;
    margin: auto;
}


/* ================= PROGRAMS ================= */

.program-section {
    background: #f5f8f6;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card-body {
    padding: 25px;
}

.program-icon {
    width: 55px;
    height: 55px;
    background: #e8f5ef;
    color: #218c65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 15px;
}

.program-card h4 {
    color: #173c2d;
    font-weight: bold;
}

.program-card a {
    color: #218c65;
    font-weight: bold;
}


/* ================= IMPACT ================= */

.impact-section {
    background:
        linear-gradient(rgba(23, 60, 45, 0.94), rgba(23, 60, 45, 0.94)),
        url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;
}

.light-label {
    color: #f4b942;
}

.impact-icon {
    font-size: 40px;
    color: #f4b942;
    margin-bottom: 10px;
}

.counter {
    font-weight: 800;
    font-size: 40px;
}


/* ================= CHECK ITEMS ================= */

.check-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-item > i {
    color: #218c65;
    font-size: 25px;
}

.check-item h5 {
    color: #173c2d;
    font-weight: bold;
    margin-bottom: 3px;
}

.check-item p {
    margin-bottom: 0;
}


/* ================= CTA ================= */

.cta-section {
    padding: 80px 0;
    background: #218c65;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: bold;
}

.cta-section p {
    max-width: 650px;
    margin: 15px auto 25px;
}


/* ================= FOOTER ================= */

.footer {
    background: #102a20;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer h4,
.footer h5 {
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer h4 i {
    color: #f4b942;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #bbb;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #f4b942;
    padding-left: 5px;
}

.footer hr {
    border-color: #405248;
    margin: 30px 0 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1c4937;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #f4b942;
    color: #173c2d;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 15px;
    }

    .hero h1 {
        font-size: 48px;
    }

}

@media (max-width: 576px) {

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons .btn {
        margin-bottom: 10px;
    }

}