.footer-container { max-width: 1000px; margin: 0 auto; }
.footer-brand h3 { margin: 0 0 8px; font-size: 1.1rem; }
.footer-brand p { margin: 0; line-height: 1.4; }

.footer-social { margin: 10px 0; }
.footer-social a { color: black; margin: 0 12px; display: inline-block; }
.footer-social a:hover { color: #b08d57; }

.footer-bottom { font-size: 0.9rem; margin-top: 8px; }
.footer-bottom a { color: black; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
/* Espace blanc autour des boutons sociaux */
.footer-social {
  margin: 18px 0 22px; /* espace haut et bas */
}

/* Style des boutons/icônes */
.footer-social a {
  background-color: white;     /* espace blanc */
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;

  box-shadow: 0 3px 8px rgba(0,0,0,0.08); /* léger relief */
  transition: all 0.3s ease;
}

/* Effet au survol */
.footer-social a:hover {
  transform: translateY(-4px); /* surélévation */
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  color: #b08d57; /* doré élégant */
}