body{
    background-color: white;
}

.galerie {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center; /* centre les éléments */
    padding: 40px;
}

img{
    border-radius: 10px;
}

.galerie img {
    width: 400px; /* taille fixe confortable */
    height: 500px;
    object-fit: cover;
    background-color: #d9d9d9;
}

@media (max-width: 1000px) {
    .galerie {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .galerie {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chantier {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.chantier img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chantier h2 {
    margin-top: 10px;
    font-weight: bold;
    color: #00425C;
}