@import "variables.css";
@import "base.css";
@import "layout.css";
@import "navigation.css";
@import "accordion.css";

/* ===========================
   FOOTER – amélioration visuelle
   (HTML inchangé)
   =========================== */

footer.site-footer {
  background: linear-gradient(
    to bottom,
    #fffdf7 0%,
    #fde9a9 100%
  );
  margin-top: 6rem;
  padding: 3.5rem 1.5rem 0;
  text-align: center;
  color: var(--noir-abeille);
}

/* Contention visuelle (important sur desktop) */
footer.site-footer > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Logo */
footer.site-footer img {
  height: 64px;
  margin-bottom: 2rem;
}

/* Navigation */
footer.site-footer nav,
footer.site-footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

footer.site-footer a {
  text-decoration: none;
  color: var(--noir-abeille);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

/* Soulignement miel élégant */
footer.site-footer a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--jaune-miel);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

footer.site-footer a:hover::after {
  width: 100%;
}

/* Signature basse */
footer.site-footer .footer-signature,
footer.site-footer .footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.12);
  margin-top: 2.5rem;
  padding: 1.4rem 1rem 1.6rem;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.75);
}

/* Petite respiration autour de 🐝 */
footer.site-footer .footer-signature span,
footer.site-footer .bee {
  margin-left: 0.4rem;
  opacity: 0.85;
}

/* ===========================
   Mobile
   =========================== */
@media (max-width: 768px) {
  footer.site-footer {
    margin-top: 4rem;
    padding-top: 2.8rem;
  }

  footer.site-footer nav,
  footer.site-footer .footer-nav {
    flex-direction: column;
    gap: 1.2rem;
  }
}