/* ==================== GALLERY SECTION STYLES ==================== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--dark-green);
    color: #fff;
    overflow: hidden;
}

.gallery-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    padding: 0 40px;
}

.gallery-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 40px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-item {
    flex: 0 0 400px;
    aspect-ratio: 16/10;
    background-color: #3e4235;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 300px;
    }
}