/* ==========================================================================
   Footer — logos partenaires + mentions
   ========================================================================== */

.site-footer {
  position: relative;
  background: #fff;
  margin-top: -6vw;
  padding: 4vh 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vh;
  overflow: hidden;
  z-index: 50;
}

/* ──────────────────────────────────────────────
   Bloc marque principal
   ────────────────────────────────────────────── */

.site-footer__bloc-marque img {
  height: clamp(60px, 8vw, 110px);
  width: auto;
}

/* ──────────────────────────────────────────────
   Logos Europe / EEN — discrets
   ────────────────────────────────────────────── */

.site-footer__europe {
  display: flex;
  align-items: center;
  gap: 1.2em;
}

.site-footer__logo-eu {
  height: clamp(14px, 1.8vw, 22px);
  width: auto;
}

.site-footer__een {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(8px, 0.8vw, 10px);
  font-weight: 500;
  color: #222221;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────
   Mentions légales + crédit WAP
   ────────────────────────────────────────────── */

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  width: 100%;
  max-width: 1200px;
  padding-top: 2vh;
}

.site-footer__mentions {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #222221;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__mentions:hover {
  color: #E6105D;
}

.site-footer__credit img {
  height: 16px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.site-footer__credit:hover img {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 0;
    padding: 3vh 5vw;
    gap: 3vh;
  }

  .site-footer__bloc-marque img {
    height: auto;
    width: 80vw;
    max-width: 320px;
  }

  .site-footer__logo-eu {
    height: 20px;
  }

  .site-footer__een {
    font-size: 9px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 1.5vh;
    text-align: center;
  }
}
