/* === SLIDER GLOBAL === */
.hero-slider {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* === CONTAINER FLEX === */
.slider-container {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  position: relative;      /* pour superposer les slides si besoin */
  width: 100%;
  height: 100%;
}

/* === CHAQUE SLIDE === */
.slide {
  position: absolute;       /* superposition pour fade */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

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

/* === IMAGE DE FOND === */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* === LOGO CENTRÉ FLEX === */
.static_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;  /* toujours au-dessus */
  pointer-events: none;
}

.static_logo img {
  width: 350px;
  height: auto;
  margin-bottom: 100px;
}
