* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    color: #c41e3a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.logo-text p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c41e3a;
}

.btn-donate-header {
    background: #c41e3a;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-donate-header:hover {
    background: #8b1538;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 30vh;
    min-height: 225px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                url('hero-background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    background-color: #1a5f3e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 62, 0.8), rgba(45, 143, 95, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Mission Section */
.mission {
    background: #f8f9fa;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

/* Impact Section */
.impact {
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 2rem;
}

.amount span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.impact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.projected-reach {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #c41e3a;
}

.projected-reach h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #c41e3a;
}

.projected-reach ul {
    list-style: none;
    padding: 0;
}

.projected-reach li {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    color: #555;
}

.projected-reach li strong {
    color: #c41e3a;
    font-weight: 700;
}

.impact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Photos Section */
.photos {
    background: #f8f9fa;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-item img:hover {
    transform: scale(1.03);
}

/* Donate Section */
.donate-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
    color: white;
    text-align: center;
}

.donate-section h2 {
    color: white;
}

.donate-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.donate-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-donate,
.btn-volunteer {
    display: block;
    padding: 15px 40px;
    margin: 15px auto;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    max-width: 350px;
}

.btn-donate {
    background: white;
    color: #c41e3a;
    border: 2px solid white;
}

.btn-donate:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-volunteer {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-volunteer:hover {
    background: white;
    color: #c41e3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Volunteer Section */
.volunteer {
    background: #f8f9fa;
    text-align: center;
}

.volunteer-content {
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #c41e3a;
    color: white;
}

.btn-primary:hover {
    background: #8b1538;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #c41e3a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    font-size: 1.1rem;
}

.contact-item a {
    color: #c41e3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b1538;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #c41e3a;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c41e3a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mission-grid,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .photos-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 10px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 200px;
    }

    h2 {
        font-size: 2rem;
    }

    .mission-text p,
    .impact-text p {
        font-size: 1rem;
    }

    .donate-box {
        padding: 1rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 5px;
    }

    .logo {
        gap: 10px;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

    section {
        padding: 60px 0;
    }
}
