
/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #004d00;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    padding: 0;
}

/* Gallery Items */
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

/* Hover Effect */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 40%;
    max-width: 800px;
    border-radius: 8px;
}

/* Close Button */
.close {
    position: absolute;
    top: 50px;
    right: 70px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
    }

    .lightbox-content {
        width: 90%;
    }

    .close {
        top: 30px;
        right: 30px;
        font-size: 30px;
    }
}