﻿body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

.gallery-section {
    padding: 50px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 1300px;
    margin: 40px auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

    .gallery-header h2 {
        font-size: 2.2rem;
        color: #2e7d32;
        margin-bottom: 10px;
    }

    .gallery-header p {
        font-size: 1.1rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: #fefefe;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .gallery-item h4 {
        font-size: 1.2rem;
        color: #1b5e20;
        margin-bottom: 10px;
    }

    .gallery-item p {
        font-size: 0.95rem;
        color: #666;
    }

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

.gallery-btn {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .view-more-btn:hover {
        background: #1b5e20;
        transform: scale(1.05);
    }
