.video-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  z-index: 1; /* S'assurer que le slider est en dessous du header */
}

/* Le conteneur du slider garde une hauteur fixe */
.slider-container {
  position: relative;
  width: 100%;
  height: 700px; /* ou 400px si tu veux la hauteur de ta vidéo */
}

/* Les slides sont empilées mais visibles en fondu */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* chaque slide prend toute la hauteur du conteneur */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Bloc vidéo centré */
.full_container iframe {
  display: block;
  margin: 0 auto;
  width: 712px;
  height: 400px;
}

/* Dots : 50px sous la vidéo */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
  z-index: 5;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Bloc logo + texte */
.content {
  display: flex;
  flex-direction: row;
  align-items: end;
  margin-top: 80px; /* 80px sous les dots */
  gap: 30px;
  width: 100%;
}

.static_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(50vw - 125px);
}

.static_logo img {
  height: 80px;
}

.slide-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  text-align: left;
}

.slide-content h2 {
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.slide-content p {
  font-size: 14px;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1.5em;
}

.video_mobile{
  display: none;
}
