﻿.gallery-section {
    background: #ffffff; /* clean white background */
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

    /* Remove dark overlay */
    .gallery-section::before {
        content: none;
    }

.gallery-content {
    max-width: 1200px;
    margin: auto;
    color: #333; /* dark text for readability */
    text-align: center;
}

.gallery-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
    color: #145a32; /* fresh green */
}

.gallery-header p {
    font-size: 1.1em;
    max-width: 700px;
    margin: auto;
    animation: fadeInUp 1s ease;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background: #fff; /* solid white cards */
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    }

    .gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .gallery-item h4 {
        margin-top: 10px;
        font-size: 1.2em;
        color: #145a32; /* green for titles */
    }

    .gallery-item p {
        font-size: 0.9em;
        color: #666;
    }

.view-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #27ae60; /* fresh green button */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .view-more-btn:hover {
        background: #145a32;
        transform: scale(1.05);
    }

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
