/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--pink-bg, #FDF3F1);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-menu, 'Inter', sans-serif);
}

/* ============================================================
   FOOTER MAIN
   ============================================================ */
.footer__main {
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  gap: 40px;
  padding: 48px 6vw 40px;
  position: relative;
  z-index: 2;
}

/* Colonne 1 — Logo + liens légaux */
.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  height: auto;
  width: 180px;
  object-fit: contain;
  object-position: left center;
}

.footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.footer__legal-links a {
  font-family: var(--font-menu, 'Inter', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent, #E60B65);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__legal-links a:hover {
  opacity: 0.7;
}

/* Colonne 2 — Contact + Adresse */
.footer__col--info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.footer__info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__info-label {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E60B65;
}

.footer__info-value {
  font-size: 1.3rem;
  font-weight: 400;
  color: #E60B65;
  text-decoration: none;
  line-height: 1.4;
}

a.footer__info-value {
  color: #E60B65;
  transition: color 0.2s ease;
}

a.footer__info-value:hover {
  color: var(--accent, #E60B65);
  font-weight: bolder;
}

.footer__nav-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 8px;
}

.footer__nav-links a {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent, #E60B65);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__nav-links a:hover {
  opacity: 0.7;
}

.footer__nav-sep {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--accent, #E60B65);
  margin: 0 6px;
  user-select: none;
}

/* Colonne 3 — Icônes sociales */
.footer__col--social {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}

.footer__social-link-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--accent, #E60B65);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__social-link-telephone {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: -2px;
  border-radius: 50%;
  color: var(--accent, #E60B65);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__social-link-facebook:hover {
  transform: scale(1.1);
}

.footer__social-link-telephone:hover {
  transform: scale(1.1);
}
/* ============================================================
   FOOTER VAGUES SVG
   ============================================================ */
.footer__waves {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: -100px;
}

.footer__waves svg {
  display: block;
  width: auto;
  height: 120%;
}

/* ============================================================
   FOOTER BOTTOM (mention légale)
   ============================================================ */
.footer__bottom {
  background: var(--accent, #E60B65);
  padding: 20px 6vw;
  position: relative;
  z-index: 2;
}

.footer__bottom-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__bottom-text a:hover {
  color: #fff;
}

.footer__bottom-text span {
  margin: 0 6px;
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr;
    padding: 36px 5vw 28px;
  }

  .footer__col--social {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  
  .footer__col--info {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--social {
    grid-column: 1;
    justify-content: flex-start;
  }

  .footer__waves {
    margin-top: -30px;
  }
}