    body { background:#000; color:#fff; font-family:Montserrat; margin:0; padding:0; text-align:center; }
    b, strong {
  font-weight: 700;
}
    header { text-align:center; padding:20px 0; }
    .scene-title { 
	    font-size:2em; margin-bottom:10px; color: #ff94b8; }
    .scene-subtitle { font-style:italic; font-size:1em; margin-bottom:30px; color:#aaa; }
    .intro-block { display:flex; flex-wrap:wrap; justify-content:center; align-items:flex-start; gap:20px; max-width:1100px; margin:0 auto 40px; padding:0 20px; }
    .intro-block > div { flex:1; min-width:200px; }
    .intro-block img, .intro-block video { max-width:100%; border-radius:10px; display:block; margin:0 auto; }
 
     /* Classe qui floute */
    .blur-video {
      filter: blur(8px);
    }

     .blur-images {
      filter: blur(8px);
    }

 
 
    .gallery img:hover { transform:scale(1.05); }
    .cta { margin-bottom:40px; }
    .cta a { background:#e91e63; color:#fff; padding:15px 80px; font-size:1.2em; border-radius:8px; text-decoration:none; transition:background 0.3s; }
    .cta a:hover { background:#ff4081; }
    @media (max-width: 768px) {
      .intro-block { flex-direction: column; align-items:center; }
    }
    .intro-text {
  text-align: justify;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  align-self: flex-start;
}
   .lightbox { position:fixed; top:0; left:0; width:100%; height:100%; display:flex; justify-content:center; align-items:center; background:rgba(0,0,0,0.8); z-index:1000; }
  .lightbox.hidden { display:none; }
  .lightbox-content { position:relative; max-width:100vw; max-height:100vh; }
  .lightbox-content img { max-width:100%; max-height:100vh; object-fit:contain; }
  .lightbox-content span { position:absolute; top:50%; font-size:3em; color:white; cursor:pointer; padding:10px; transform:translateY(-50%); user-select:none; }
  #prevBtn { left:20px; }
  #nextBtn { right:20px; }
  
  .overlay {
	   position:absolute; top:0; left:0; width:100%; height:100%; z-index:-1; 
	  }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 300px); /* Valeur par défaut : 4 colonnes */
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

@media (max-width: 1275px) {
  .gallery {
    grid-template-columns: repeat(3, 250px);
  }
}

@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 200px);
  }
}

@media (max-width: 440px) {
  .gallery {
    grid-template-columns: repeat(2, 160px);
  }
}

  .gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    margin: auto;
  }



.buttons-fixed {
  position: fixed;         /* reste visible au scroll */
  top: 0;                  /* collé en haut */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(0,0,0,0.7); /* petit fond pour la lisibilité */
  z-index: 9999;
}

.buttons-fixed a {
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s ease;
  color: #fff;
  padding: 10px 16px; /* taille par défaut */
}

/* ✅ BACK plus petit */
.btn-back {
  background: #777;
  font-size: 14px;
  padding: 10px 16px;   /* bouton compact */
}
.btn-back:hover {
  background: #555;
}

/* ✅ PLAY plus large */
.btn-play {
  background: #e91e63;
  font-size: 16px;
  padding: 12px 28px;  /* plus grand */
}
.btn-play:hover {
  background: #c2185b;
}

.btn-playBig a {
  display: block;
  width: 60%;
  margin: 0 auto;        /* centre horizontalement */
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s ease;
  color: #fff;
  background: #e91e63;
  font-size: 16px;
  padding: 12px 28px;
}
.btn-playBig:hover {
  background: #c2185b;
}


