/* ══════════════════════════════════════════
   footer.css
═══════════════════════════════════════════ */

.footer {
  background: #111c12;
  color: #c8e6ca;
  font-size: 0.88rem;
}

.footer__top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

/* Brand */
.footer__logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: 0.83rem;
  color: #7aaa7d;
  line-height: 1.7;
  max-width: 280px;
}
.footer__legal-info {
  font-size: 0.75rem;
  color: #3a603d;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Colonnes */
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__list a {
  color: #7aaa7d;
  transition: color 0.2s;
  font-size: 0.85rem;
}
.footer__list a:hover { color: white; }

/* Adresse */
.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #7aaa7d;
}
.footer__address a { color: #7aaa7d; transition: color 0.2s; }
.footer__address a:hover { color: white; }

/* Social */
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 1.2rem;
}
.footer__social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a8d4ab;
  transition: var(--transition);
}
.footer__social-icon:hover {
  background: var(--vert-clair);
  border-color: var(--vert-clair);
  color: white;
  transform: translateY(-2px);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #3a603d;
}
.footer__bottom a { color: #5a8a5d; transition: color 0.2s; }
.footer__bottom a:hover { color: white; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
