/* Conteneur principal de la galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
}

/* Boîte contenant chaque image */
.image-box {
    background-color: #eaecef;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Image dans la boîte */
.gallery-image {
    max-width: 100%;
    border-radius: 5px;
}

/* Tags sous l'image */
.tags {
    color: #5a6470;
    font-size: 14px;
    margin: 10px 0;
}

/* Conteneur des boutons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Boutons */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #0056b3;
}

/* Bouton zoom */
.zoom-btn {
    background-color: #6c757d;
}

.zoom-btn:hover {
    background-color: #565e64;
}
