/* SECTION globale */
.full-video-section {
  width: 100%;
  background: #000; /* Arrière-plan si la vidéo ne se charge pas */
  font-family: sans-serif;
  color: #fff;
  margin: 0 auto;
  padding: 0; /* Pas de marge/padding supplémentaire */
}

/* 1) Conteneur ratio (16:9) pour afficher toute la vidéo */
.video-ratio-container {
  position: relative;
  width: 100%;
  /* 16:9 => 9/16 = 56.25% */
  padding-bottom: 56.25%; 
  overflow: hidden;
}

/* La vidéo occupe 100% du conteneur ratio */
.my-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Conserve le ratio sans rogner */
}

/* Overlay (voile noir) */
.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.6)
  );
  pointer-events: none;
}

/* 2) Contenu (texte + boutons) sous la vidéo */
.below-content {
  text-align: center;
  padding: 1.5rem 1rem; 
  max-width: 900px;
  margin: 0 auto;
}

.below-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Boutons 
   => Mettre en colonne, centrer horizontalement
*/
.buttons-container {
  display: flex;
  flex-direction: column; /* Chaque bouton sur sa propre ligne */
  align-items: center;    /* Alignement horizontal centré */
  gap: 1rem;              /* Espace vertical entre les boutons */
  margin-top: 1rem;
}

/* Styles communs des boutons */
.btn-white,
.btn-gold,
.btn-transparent {
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  width: auto; /* Laisse la largeur s’adapter au texte */
}

/* Bouton blanc */
.btn-white {
  background-color: #fff;
  color: #000;
}
.btn-white:hover {
  background-color: #f2f2f2;
}

/* Bouton or */
.btn-gold {
  background-color: #b0190e;
  color: #fff;
}
.btn-gold:hover {
  background-color: #b48f54;
}

/* Bouton transparent (cadre blanc) */
.btn-transparent {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-transparent:hover {
  background-color: #fff;
  color: #000;
}

/* Ajustements Responsive */
@media (max-width: 767px) {
  .below-content h1 {
    font-size: 1.6rem;
  }
}