/*
Theme Name: Healing Hope
Theme URI: https://lovinglifeheals.org
Author: Emmanuel Okello
Author URI: https://lovinglifeheals.org
Description: Custom WordPress theme for Northern Uganda Hope for New Beginnings (NUHONEB) - Loving Life Heals Africa.
Version: 1.3
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: healinghope
Tags: ngo, charity, nonprofit, responsive, accessibility-ready
*/

/* --- Root Color Variables & Theme Defaults --- */
:root {
    --hope-green: #2E7D32;
    --sky-blue: #2196F3;
    --warm-orange: #F9A825;
    --soft-cream: #FFF8E7;
    --dark-gray: #333333;
    --white: #FFFFFF;
    --border-radius: 12px;
}

/* --- Global Reset & Typography (Plus Jakarta Sans + Inter) --- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--soft-cream);
    color: var(--dark-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark-gray);
    margin-top: 0;
    letter-spacing: -0.02em;
}

.quote-text {
    font-family: "Inter", sans-serif;
    font-style: italic;
}

/* --- Layout Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--hope-green);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu li a:hover {
    color: var(--warm-orange);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
}

.btn-green {
    background-color: #2E7D32;
    color: white;
    border: 2px solid #2E7D32;
}

.btn-green:hover {
    background-color: #1B5E20;
    color: white;
    transform: translateY(-3px);
}

.btn-orange {
    background-color: #F9A825;
    color: #fff;
    border: 2px solid #F9A825;
}

.btn-orange:hover {
    background-color: #E68900;
    color: white;
    transform: translateY(-3px);
}

/* --- Impact Statistics --- */
.stats {
    background: var(--hope-green);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin: 0;
    color: var(--warm-orange);
}

.stat-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* --- Contact & Donation Banners --- */
.donate-banner {
    background: linear-gradient(135deg, var(--hope-green), #1B5E20);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* --- Pagination --- */
.page-numbers {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 4px;
    border-radius: 8px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.page-numbers.current,
.page-numbers:hover {
    background: #2E7D32;
    color: white;
}

/* --- Footer Link Hover Effect --- */
footer ul li a:hover {
    color: var(--warm-orange) !important;
    padding-left: 4px;
}

/* --- Responsiveness & Mobile Tweaks --- */
@media (max-width: 900px) {
    section > div[style*="1fr 1.3fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .btn {
        display: block;
        margin: 12px auto;
        text-align: center;
        max-width: 280px;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
    }

    .hero p {
        font-size: 1.05rem !important;
    }

    .hero {
        height: auto !important;
        min-height: 500px !important;
        padding: 60px 0 !important;
    }

    section {
        padding: 50px 20px !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px !important;
        font-size: 0.95rem;
    }

    header > div {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}