body {
  margin: 0;
  background-color: white;
  color: black;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* IMAGE ALÉATOIRE */
body.bg-image {
  background-image: url("images/p6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* TITRE */
h1 {
  margin-top: 20px;
  letter-spacing: 2px;
}

/* GALERIE */
.gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* COLONNES */
.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* MEDIA */
.column img,
.column video {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.column img:hover,
.column video:hover {
  transform: scale(1.05);
}

/* BOUTON */
.back-home {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 40px;
  color: black;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.back-home:hover {
  background-color: black;
  color: white;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}