/* ── Footer ── */
.site-footer {
  background-color: var(--color-primary);
  border-top: 3px solid var(--color-ocre);
  padding: 1.5rem 2rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Réseaux sociaux */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-link img {
  height: 24px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-social-link:hover img {
  opacity: 1;
}

/* Liens footer */
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-link {
  color: var(--color-bg);
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-link:hover {
  color: var(--color-bg);
  opacity: 1;
}

/* Copyright */
.footer-copy {
  color: var(--color-bg);
  font-size: 0.8rem;
  opacity: 0.65;
}

/* -- Responsive -- */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
