/* Style pour les onglets de la galerie */
#galleryTabs .nav-link {
    color: #495057;
    border: 1px solid #dee2e6;
    margin: 0 5px;
    transition: all 0.3s;
}

#galleryTabs .nav-link.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

/* Style des images de la galerie */
.gallery-img-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 200px;
}

.gallery-img-container:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

#galleryTabs .nav-link {
    border: 1px solid #dee2e6 !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

#galleryTabs .nav-link.active {
    background-color: var(--bs-primary) !important;
    color: white !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

#galleryTabs .nav-link:not(.active):hover {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
}