/* Gallery Section */
#gallery {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.gallery-container {
    max-width: var(--width);
    margin: 0 auto;
}

.gallery-container h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.gallery-container h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}


.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    #galleryCarousel {
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}