/* Section slider plein écran */
.hero{
  padding: 0;
  margin: 0;
}

/* Slider full width */
.slider{
  width: 100vw;
  margin-left: calc(50% - 50vw); /* sort du container */
  border-radius: 0;
  border: none;
  overflow: hidden;
}

/* Slides */
.slides{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slides::-webkit-scrollbar{
  display: none;
}

/* Une slide = pleine largeur écran */
.slide{
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  height: 70vh;
  min-height: 300px;
  background: #f3f4f6;
}

/* Image pleine taille */
.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px 0;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
}

/* Responsive */
@media (max-width: 768px){
  .slide{
    height: 50vh;
    min-height: 220px;
  }
}
