/* Bloc texte sur le carrousel */

.carousel-caption-left {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 10;

  background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
  padding: 1.8rem;
  border-radius: 12px;

  width: 70%;
  max-width: 900px;

  animation: fadeInUp 1s ease forwards;
}


/* Effet d'apparition */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Texte lisible */
.carousel-caption-left h1 {
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.carousel-caption-left p {
  color: #f1f1f1;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.carousel-caption-left .kicker {
  color: #fbde4a;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption-left {
    top: auto;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    text-align: center;
    padding: 1rem;
  }
}
/* --- SECTION CANDIDAT : VIDEO --- */
.candidate-video-wrapper{
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;  /* ✅ centre la vidéo */

}

.candidate-video{
  width: min(1200px, 100%); /* ✅ plus grande, mais responsive */
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.candidate-video iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* --- VIDEO HOME IMPACT --- */
.home-video-wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-video-frame{
  width: 100%;
  max-width: 1200px;   /* 👈 clé : largeur réelle */
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.home-video-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

