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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #4338ca;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #818cf8;
    font-size: 1.4rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #818cf8;
}

.btn-donate {
    background: #818cf8;
    color: #4338ca;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-donate:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #4338ca 0%, #4338cadd 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #818cf8;
    color: #4338ca;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 5px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s;
    margin: 5px;
}

.btn-secondary:hover {
    background: #fff;
    color: #4338ca;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #4338ca;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.about {
    padding: 100px 0;
    background: #f8fafc;
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.about-item h3 {
    font-size: 1.4rem;
    color: #4338ca;
    margin-bottom: 10px;
}

.about-item p {
    color: #555;
    line-height: 1.8;
}

.programs {
    padding: 100px 0;
    background: #fff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 1.3rem;
    color: #4338ca;
    margin-bottom: 10px;
}

.program-content p {
    color: #666;
    font-size: 0.95rem;
}

.events {
    padding: 100px 0;
    background: #f8fafc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background: #4338ca;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.event-info h3 {
    font-size: 1.1rem;
    color: #4338ca;
    margin-bottom: 8px;
}

.event-info p {
    color: #666;
    font-size: 0.9rem;
}

.volunteer-section {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.volunteer-section h3 {
    font-size: 1.8rem;
    color: #4338ca;
    margin-bottom: 30px;
}

.volunteer-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.volunteer-option {
    padding: 20px;
}

.volunteer-option .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.volunteer-option h4 {
    font-size: 1.2rem;
    color: #4338ca;
    margin-bottom: 10px;
}

.volunteer-option p {
    color: #666;
    font-size: 0.95rem;
}

.donate {
    padding: 80px 0;
    background: linear-gradient(135deg, #818cf8, #818cf8dd);
    text-align: center;
    color: #fff;
}

.donate h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4338ca;
}

.donate p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #4338ca;
}

.donate .btn-primary {
    background: #4338ca;
    color: #fff;
}

.footer {
    background: #4338ca;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #818cf8;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-col .email-large {
    margin-top: 15px;
}

.footer-col .email-large a {
    color: #818cf8;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-col .ein {
    font-size: 1.1rem;
    color: #818cf8;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #818cf8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.back-to-top {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #4338ca;
    z-index: 2000;
    transition: left 0.3s;
    padding: 80px 30px;
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #818cf8;
}

@media (max-width: 992px) {
    .about-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .programs-grid, .events-grid, .volunteer-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav, .header .btn-donate {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .programs-grid, .events-grid, .volunteer-options {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .event-card {
        flex-direction: column;
        text-align: center;
    }
}