.header-container {
  background-color: #e3dbd1 !important;
}

/* Hero vidéo plein écran */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* couvre toute la zone */
  z-index: -1; /* passe derrière le contenu */
}

/* Overlay pour le contenu du hero */
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-logo {
  max-width: 280px;
  width: 80%;
  height: auto;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.7));
}

.color-box-webgencia {
  background-color: #e3dbd1;
}

.margin-bottom-link-contact {
  margin-bottom: 2rem !important;
}

.footer-link {
  color: white !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-link:hover {
  color: rgb(167, 161, 153);
}

/* Partenaires */
.swiper-slide {
  margin-right: 0 !important;
  width: auto !important;
}

.swiper-wrapper {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 120px !important;
}

.swiper-slide img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.btn-download {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  border: 1px solid var(--accent-color);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-download:hover {
  background-color: #fff;
  color: var(--accent-color);
}


@media screen and (max-width: 767px) {
  .swiper-wrapper {
    gap: 60px !important;
  }
}

@media screen and (max-width: 480px) {
  .swiper-wrapper {
    gap: 40px !important; /* ton gap mobile */
  }

  .swiper-slide {
    width: auto !important; /* laisse l'image gérer sa taille */
  }

  /* Utilise width (pas seulement max-width) et !important si Swiper met un inline style */
  .swiper-slide img {
    width: 80px !important;   /* plus réaliste qu'un max-width:20px (très petit) */
    height: auto !important;
    max-width: none !important;
  }
}

/* LEGAL */
.legal {
  background-color: #a7a199;
  padding: 140px 0 60px 0;
}

@media screen and (max-width: 1199px) {
  .legal {
    padding: 110px 0 40px 0;
  }
}

@media screen and (max-width: 575px) {
  .legal {
    padding: 100px 0 30px 0;
  }
}
