/* Galerie */
.gallery {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

.gallery h2 {
    color: #007CBD;
    margin-bottom: 10px;
}

.gallery p {
    color: #333;
    margin-bottom: 20px;
}

/* Grille de la galerie */
.gallery-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 0 20px;
}

.gallery-item {
    border: 1px solid #007CBD;
    padding: 5px;
    background-color: #EAF8FD;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Conteneur des miniatures */
.thumbnail-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EAF8FD;
    border-radius: 5px;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Description des images */
.image-description {
    margin-top: 5px;
    font-size: 14px;
    color: #007CBD;
    font-weight: bold;
}

.description-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}
