/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */
header {
    background-color: #1d396d;
    color: white;
    text-align: center;
    padding: 40px 0;
}

h1, h2, h3 {
    letter-spacing: 0.5px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== NAVIGATION ===== */
nav {
    background-color: #f3dc0a;
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;

    color: #1d396d;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.3s;
}

nav a:hover {
    color: #000;
    border-bottom: 2px solid #1d396d;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* ===== BUTTONS ===== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background-color: #1d396d;
    color: white;
}

.btn-primary:hover {
    background-color: #162b52;
}

.btn-secondary {
    background-color: #f3dc0a;
    color: #1d396d;
}

.btn-secondary:hover {
    background-color: #e0c800;
}

/* ===== ABOUT SECTION ===== */
.about-preview {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.logo-section {
    flex: 1;
}

.logo {
    max-width: 250px;
}

.mission-vision {
    flex: 2;
}

.mission-vision h2 {
    margin-bottom: 10px;
    color: #1d396d;
}

.mission-vision p {
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #1d396d;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

footer p {
    margin-bottom: 8px;
}


/* ===== ORGANIZATION DETAILS ===== */
.organization-details {
    padding: 60px 0;
    border-top: 2px solid #ddd;
}

.organization-details h2 {
    color: #1d396d;
    margin-bottom: 15px;
}

/* ===== IMPACT STATS ===== */
.impact {
    padding: 60px 0;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background-color: #1d396d;
    color: white;
    padding: 30px;
    flex: 1;
    border-radius: 8px;
}

.stat-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ===== LEADERSHIP ===== */
.leadership {
    padding: 60px 0;
}

.leadership h2 {
    color: #1d396d;
    margin-bottom: 15px;
    font-size: 2.2rem;
}


.leadership li {
    margin-bottom: 10px;
    margin: center;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1d396d;
    font-weight: bold;
}

.donate-wrapper {
    margin: 25px 0;
    text-align: center;
}

.btn-donate {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.btn-donate:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .about-preview {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        height: 350px;
    }

    .stats {
        flex-direction: column;
    }

    nav .container {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    nav.active .container {
        display: flex;
    }

    .hamburger {
        display: block;
        text-align: right;
        padding-right: 20px;
    }
}


/* ===== GALLERY ===== */

.gallery-section {
    padding: 60px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ===== CONTACT PAGE ===== */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.contact-form button {
    margin-top: 20px;
}

.contact-info {
    flex: 1;
    background: #f4f7fc;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}