/* =========================
   FOOTER SIMPLE
========================= */
.site-footer {
  padding: 34px 0 26px;
  color: var(--color-white);
  background: linear-gradient(to right, #1e3a2f, var(--color-green));
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}

.footer-brand-simple {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 420px;
}

.footer-brand-simple strong {
  font-size: 1.1rem;
}

.footer-brand-simple span,
.footer-bottom-simple p,
.footer-bottom-simple a {
  color: #dbeee4;
  font-size: 0.9rem;
}

/* Lien Facebook du footer : icône + texte, version simple */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 16px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--color-sand-light);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: #1877f2;
}

.footer-bottom-simple {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom-simple p {
  margin: 0;
}

.footer-bottom-simple a {
  text-decoration: none;
}

.footer-bottom-simple a:hover,
.footer-bottom-simple a:focus-visible {
  color: var(--color-white);
  text-decoration: underline;
}
