/* --- Global Styles --- */
:root {
    --primary-color: #2c3e50; /* Dark Blue/Charcoal */
    --secondary-color: #e74c3c; /* Red/Maroon for action */
    --accent-color: #3498db; /* Bright Blue */
    --light-bg: #f4f4f4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: white;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: #c0392b; /* Darker red */
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-donate {
    background-color: #27ae60; /* Green for donation */
    color: white;
}

.btn-donate:hover {
    background-color: #229954;
}

/* --- Header & Navigation --- */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5em;
    margin-left: 10px;
    margin-bottom: 0;
    color: var(--accent-color);
}

.logo i {
    font-size: 1.5em;
    color: var(--secondary-color);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

/* --- Hero Section (index.html) --- */
.hero-section {
    position: relative;
    text-align: center;
}

.hero-content {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for better text contrast */
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 80%;
}

.hero-text-overlay h2 {
    font-size: 3em;
    margin-bottom: 15px;
    color: white;
}

.hero-text-overlay p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* --- Stats Section (index.html) --- */
.stats-section {
    padding: 40px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-box h4 {
    font-size: 2em;
    margin-bottom: 5px;
}

/* --- Programs Teaser (index.html) --- */
.programs-teaser-section {
    background-color: var(--light-bg);
    padding: 50px 0;
    text-align: center;
}

.program-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.program-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 20px;
    flex: 1;
    text-align: left;
}

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: var(--light-bg);
    padding-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: var(--light-bg);
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons a {
    color: white;
    font-size: 1.5em;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-size: 0.8em;
}

/* --- About Us Page Specific Styles --- */
.page-hero {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-hero h1 {
    color: white;
    font-size: 2.5em;
}

.mission-statement {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.mission-text {
    flex: 1;
}

.mission-image {
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team-section, .transparency-section {
    padding: 40px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    width: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* --- Get Involved Page Specific Styles --- */
.donation-section {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.donation-form-container {
    flex: 1;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.donation-impact-text {
    flex: 1;
    padding: 30px;
    border-left: 2px solid var(--accent-color);
}

.donation-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.donation-form input[type="text"],
.donation-form input[type="email"],
.donation-form input[type="number"],
.donation-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.amount-buttons button {
    padding: 10px 15px;
    margin-right: 10px;
    margin-top: 10px;
    background-color: white;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    cursor: pointer;
    border-radius: 5px;
}

.volunteer-section {
    padding: 40px 0;
    background-color: white;
}

.volunteer-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.volunteer-image {
    width: 45%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.volunteer-text {
    width: 55%;
}

.volunteer-text ul {
    list-style: none;
    margin-top: 15px;
}

.volunteer-text ul li {
    margin-bottom: 8px;
}
/* You would add media queries here for mobile responsiveness! */