body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: powderblue;
}

/* Page dessin */
body.dessin-page {
  background-color: rgb(0, 0, 0);
  display: block;
  min-height: 100vh;
}

/* Conteneur principal */
.dessin-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

/* Rangs d'images */
.row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

/* Ligne de 5 images */
.row.five img {
  width: calc(20% - 8px);
  height: auto;
  object-fit: cover;
}

/* Ligne de 2 images */
.row.two img {
  width: calc(50% - 5px);
  height: auto;
  object-fit: cover;
}

/* Image plein écran */
.row.full img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Toutes les images */
img {
  display: block;
  max-width: 100%;
  border: none;
}
.separator {
  width: 80%;
  border: none;
  border-top: 1px dashed #aaa;
  margin: 60px auto; /* espace entre les blocs */
}

.group {
  width: 100%;
}
/* Styles pour la page installation */

body.installation-page {
  margin: 0;
  padding: 0;
  background-image: url('image_phare1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  color: white;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 40px 20px;
  gap: 30px;
  box-sizing: border-box;
}

/* Image paroles */
.paroles-img {
  width: 100%;
  height: auto;
}

/* Barre audio sous l’image */
audio {
  width: 100%;
  accent-color: hotpink;
}

/* Pour Chrome/Safari : couleur rose */
audio::-webkit-media-controls-panel {
  background-color: hotpink;
}

/* Vidéo */
.video {
  width: 100%;
  height: auto;
  transition: filter 0.4s ease;
}

/* Flou au survol */
.video:hover {
  filter: blur(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .main-container {
    padding: 20px;
  }
}
