/* ===== Séparateur dégradé ENTRE contenu et footer (aucun dégradé dans le footer) ===== */
/* Adapte #ffffff si la zone de contenu a un autre fond */
.footer-sep{
  height: 40px;                  /* hauteur du fondu */
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}

/* ===== FOOTER vert foncé SOLIDE — très compact, sans variables ===== */
.site-footer{
  margin-top: 0;
  background: #0e3a22;           /* vert foncé UNI */
  color: #ffffff;
  font-size: 0.9rem;             /* plus petit */
  line-height: 1.35;             /* serré */
  border-top: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 -8px 22px rgba(0,0,0,0.08) inset;
}

/* Ruban crédit (compact) */
.footer-top{ background: rgba(255,255,255,0.03); }
.footer-top__content{
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 4px 10px;
}
.footer-credit{ color: rgba(255,255,255,0.85); font-weight: 600; letter-spacing: .15px; }
.footer-credit a{ color: #7cc26a; text-decoration: none; }
.footer-credit a:hover, .footer-credit a:focus-visible{
  color: #c9f3d2; text-decoration: underline;
}

/* Zone principale */
.footer-bottom{ background: transparent; }
.footer-bottom__content{
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 10px 10px;
}

/* À propos — compact */
.about{ display: flex; align-items: center; gap: 8px; }
.about__logo{
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  object-fit: contain; padding: 3px;
}
.about__text{ line-height: 1.3; }
.about__title{ display: block; font-weight: 800; color: #ffffff; margin-bottom: 2px; }
.about__lines{ margin: 0 0 2px; color: rgba(255,255,255,0.8); }
.link-on-dark{ color: #7cc26a; text-decoration: none; font-weight: 600; }
.link-on-dark:hover, .link-on-dark:focus-visible{ color: #b7f0c2; text-decoration: underline; }

/* Réseaux — compact */
.social{ text-align: right; }
.social__title{ display: block; font-weight: 800; color: #ffffff; margin-bottom: 2px; }
.social__icons{ display: flex; justify-content: flex-end; gap: 6px; }
.social__icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.social__icon:hover, .social__icon:focus-visible{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.14);
}

/* Ligne légale — ultra compacte */
.footer-legal{
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 6px 10px;
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px){
  .footer-top__content{ justify-content: center; }
  .footer-bottom__content{
    flex-direction: column; align-items: center; text-align: center;
    gap: 10px; padding: 8px;
  }
  .about{ flex-direction: column; text-align: center; gap: 6px; }
  .about__logo{ width: 44px; height: 44px; }
  .social{ text-align: center; }
  .social__icons{ justify-content: center; }
}

/* Focus visible */
.site-footer a:focus-visible{
  outline: 2px solid #7cc26a;
  outline-offset: 2px;
  border-radius: 8px;
}
