       /* Hero Section */
 .hero {
     background-image: url('/public/images/hero-gallery.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: var(--white);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-blue);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: var(--background-light);
            border-radius: 12px;
            border-top: 4px solid var(--secondary-green);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-gray);
            font-weight: 500;
        }

        .quote-box {
            background: var(--secondary-green);
            color: var(--white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            font-style: italic;
            font-size: 1.2rem;
        }

        .programs {
            background: var(--background-light);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .program-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .program-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .program-description {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }

        .program-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

        .impact {
            padding: 5rem 0;
            background: var(--primary-blue);
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .impact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

        .impact-content {
            position: relative;
            z-index: 2;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .impact-stat {
            text-align: center;
        }

        .impact-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent-orange);
        }

        .impact-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .stories {
            background: var(--white);
        }

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

        .story-card {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-orange);
        }

        .story-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .story-text {
            color: var(--text-gray);
            font-style: italic;
        }

        .get-involved {
            padding: 5rem 0;
            background: var(--background-light);
        }

        .involvement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

.involvement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    
    display: flex;
    flex-direction: column;         
    justify-content: space-between; 
    height: 100%;                 
}
.involvement-card p {
    flex-grow: 1;                  
    margin-bottom: 1.5rem;        
}
.involvement-card .btn {
    align-self: center;  
}

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

        .involvement-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .involvement-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .cta-banner {
            background: var(--secondary-green);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
            position: relative;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.2;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

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

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-grid,
            .impact-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .gallery {
    padding: 5rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* 🖼️ Hover zoom only on desktop */
@media (hover: hover) {
    .gallery-item:hover {
        transform: scale(1.05);
    }
}

.gallery-item img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: contain; 
    border-radius: 15px;
}

@media (max-width: 768px) {
    .gallery {
        padding: 3rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }
}


                .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
          
        }
          
                  .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        @media (min-width: 992px) {
            .content-wrapper {
                flex-direction: row;
                align-items: center;
            }
        }
        
        .content-side {
            flex: 1;
        }
        
        .image-side {
            flex: 1;
        }
        
        .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
        }  