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

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides empilées */
.slide {
  position: absolute; /* empile toutes les slides au même endroit */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 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;
}

/* Overlay pour centrer le contenu */
.overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* Dots intégrés dans la slide */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px; /* 50px sous la vidéo ou zone principale */
}

.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;
  padding: 0;
}

.crush_mobile{
  display: none;
}
