

/* Titre de chaque galerie */

/* Conteneur regroupant toutes les galeries sur une même ligne */
.galleries-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* pour forcer une seule ligne */
  justify-content: start;
  overflow-x: auto; /* défilement horizontal si besoin */
}
/* Chaque galerie */
.gallery-container {
  width: 300px; /* taille réduite */
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0; /* empêche le rétrécissement */
}
/* Zone d'image principale (xZoom) */
.xzoom-container {
  height: 200px; /* hauteur réduite */
  overflow: hidden;
  border-radius: 5px;
}
.xzoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.xzoom-container img:hover {
  transform: scale(1.02);
}
/* Miniatures (xzoom thumbs) */
.xzoom-thumbs {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.xzoom-thumbs img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.xzoom-thumbs img.active,
.xzoom-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #007BFF;
}
/* Modal pour zoom sur l'image */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.modal.open {
  display: flex;
}
.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
/* Boutons de navigation dans le modal */
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
}
.modal-prev {
  left: 20px;
}
.modal-next {
  right: 20px;
}
