
/* En-tête de galerie */


.gallery-header {
  text-align: left;
  max-width: 1400px!important;
  margin:auto;
}


/* Grille galerie */
.gallery-grid {
   display: flex;
  gap: 20px;
  max-width: 1400px;
  margin:auto!important;
}

.gallery-grid a {
  display: block;
  flex: 1 1 auto;
  overflow: hidden;
}

.gallery-grid img {
  height: 500px;
  width: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}


.gallery-grid a img:hover, .blur a img:hover {
  transform: scale(1.03);
  filter: blur(2px);

}

.gallery-largeur-max{
  max-width: 1400px!important;
  margin:auto!important;
}

@media (max-width: 768px) {
.gallery-grid {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .gallery-grid a {
    flex: 1 1 100%;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
  }
}

.legende{
  text-align: center!important;
}

body {
    opacity: 0;
}

body.loaded {
    opacity: 1;
    transition: opacity 0.8s ease;
}

