/* --- Imports --- */
/* Montserrat for headings, Open Sans for body text */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* --- Color Palette ---
Deep Forest Green: #1C482A (Body Background)
Dark Moss Green: #2D5432 (Content Blocks)
Burnt Orange: #D95F0D (Highlights, CTAs)
Deep Teal/Ocean Blue: #2C7A87 (Accents, Links)
Creamy White: #F8F8F8 (Text on dark backgrounds)
--- */

/* --- Global Styles & Modern Reset (MAX GREEN) --- */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1C482A; /* Deep Forest Green background */
    color: #F8F8F8; /* Light text on dark background */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px;
    background-color: #2D5432; /* Dark Moss Green for content area */
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    min-height: 80vh;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Ensure ALL text inside the MAIN content area is light */
main p, main ul, main address, .story-text p, .stat-item p, .testimonial-item p {
    color: #F8F8F8; 
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #D95F0D; /* Burnt Orange for main headings (Highlight) */
    margin-top: 0;
    margin-bottom: 15px;
}

h3 { 
    color: #F8F8F8; /* White text inside dark green blocks */ 
    font-size: 2em; 
}

a {
    color: #2C7A87; /* Deep Teal for standard links (Touch of Blue) */
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #D95F0D; /* Burnt Orange on hover */
}

/* --- Header & Navigation --- */
header {
    background-color: #1C482A; /* Deep Forest Green header */
    padding: 15px 20px;
    color: #F8F8F8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-bottom: 5px solid #D95F0D; /* Burnt Orange bottom border */
}

header h1 { color: #F8F8F8; }

nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
nav ul li a { color: #F8F8F8; padding: 10px 18px; border-radius: 5px; transition: background-color 0.3s ease; }
nav ul li a:hover { background-color: #A54B3E; /* Terracotta Red/Brown */ color: #F8F8F8; }

.donate-button {
    background-color: #D95F0D; /* Burnt Orange for Donate Button */
    color: #F8F8F8 !important;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 15px;
}
.donate-button:hover {
    background-color: #2C7A87; /* Deep Teal/Ocean Blue on hover */
}

/* --- Hero Sections --- */
.hero-section, .hero-subpage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    text-align: left;
    gap: 40px;
    margin-bottom: 40px;
    background-color: #2D5432; /* Dark Moss Green */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-content { flex: 1; padding-right: 20px; }
.hero-content h2 { font-size: 3.5em; line-height: 1.1; margin-bottom: 20px; color: #D95F0D; }
.hero-content p { font-size: 1.2em; color: #F8F8F8; }
.hero-image { flex: 1; max-width: 50%; text-align: center; }

/* --- Call-to-Action Buttons --- */
.cta-button {
    display: inline-block;
    background-color: #D95F0D; /* Burnt Orange for CTA */
    color: #F8F8F8;
    padding: 15px 35px;
    margin-top: 30px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.cta-button:hover { background-color: #A54B3E; /* Terracotta Red/Brown */ transform: translateY(-3px); }

.secondary-button {
    background-color: #2C7A87; /* Deep Teal/Ocean Blue */
    color: #F8F8F8;
    padding: 12px 25px;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.secondary-button:hover { background-color: #2D5432; /* Dark Moss Green on hover */ }

/* --- Content Blocks (Dark Green/Moss) --- */
.content-block {
    background-color: #2D5432; /* Dark Moss Green */
    color: #F8F8F8; 
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    border: 1px solid #1C482A; /* Subtle border matching body for depth */
}

/* Stat Items and Cards (Slightly lighter dark green for distinction) */
.stat-item, .option-card, .testimonial-item {
    background-color: #386441; 
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #F8F8F8;
}

.stat-item .icon {
    color: #D95F0D; /* Burnt Orange icons */
}
.stat-item h4 {
    color: #2C7A87; /* Deep Teal/Ocean Blue for stat titles */
}

/* --- Image Styling (NEW) --- */
.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: block;
    margin: 10px auto;
    object-fit: cover;
}

/* --- Contact Form (Inputs remain white for usability) --- */
#contactForm label { color: #F8F8F8; }

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    background-color: #FFF; 
    color: #3D2C1F; 
    border: 1px solid #2C7A87; 
}

/* --- Footer --- */
footer {
    background-color: #1C482A; /* Deep Forest Green footer */
    color: #ccc;
    text-align: center;
    padding: 20px;
    border-top: 5px solid #D95F0D; /* Burnt Orange top border */
}

/* --- Responsive adjustments remain... --- */
@media (max-width: 768px) {
    .hero-section, .hero-subpage, .story-of-impact {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .story-text {
        padding-right: 0;
    }

    .hero-image, .story-image {
        max-width: 100%;
        margin-top: 30px;
    }
}