/* --- Global Styles & Variables --- */
:root {
    --primary-color: #2e8b57; /* A slightly more "natural" Sea Green looks better for NGOs */
    --secondary-color: #FFD700; 
    --dark-color: #0e0aec; 
    --light-color: #f4f7f6; /* FIX: Changed from dark gray to a soft light mint/white */
    --text-color: #333;
    --font-family: 'Montserrat', sans-serif;
} 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utility Classes --- */
.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

.bg-light {
    background: var(--light-color);
}

.bg-dark {
    background: var(--dark-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: #256d44;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}


/* --- Header & Navigation --- */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}
.logo img {
    height: 60px; /* Adjust this value to make the logo bigger or smaller */
    width: auto;  /* This keeps the logo's proportions correct */
    vertical-align: middle; /* This helps align it nicely with the menu links */
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    height: 80vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hero-content .btn {
    margin: 0 10px;
}

/* --- Pillars Section --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.pillar-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pillar-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.05);
}

/* --- Footer --- */
footer h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}
footer .copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}
/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Makes the image a circle */
    object-fit: cover; /* Prevents image stretching */
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.team-member-card h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member-card .title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member-card .bio {
    font-size: 0.9rem;
    color: #666;
}

.board-mention {
    text-align: center;
    margin: 40px auto 0;
    padding: 20px;
    background: var(--light-color);
    border-radius: 5px;
    max-width: 700px;
}
/* --- Contact Form Section --- */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(46, 139, 87, 0.5);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}
/* --- Mission & Vision Section --- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}
.statement-card p {
    font-size: 1rem;
    color: #444;
}

.statement-card {
    background: #fff;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border-radius: 0 5px 5px 0;
}

.statement-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.statement-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Grid for Mission & Vision */
@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* --- About Page Header --- */
.page-header {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
/* --- Donate Section --- */
#donate {
    background-color: #fff; 
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.donate-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.donate-card p {
    font-size: 0.95rem;
    color: #666;
}

.donate-card:hover,
.donate-card.active {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.donate-cta {
    text-align: center;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}