footer {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column; /* on empile : bloc contact puis bloc infos */
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-social span {
  font-size: 0.9rem;
}

.separator {
  color: #bbb;
  padding: 0 0.5rem;
}

.social-media a {
  display: inline-block;
  margin: 0 0.5rem;
}
.social-media a img {
  width: 4vh;
  height: 4vh;
}

.legal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between; /* gauche / droite */
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal .info-left {
  font-size: 0.85rem;
  color: #ccc;
  margin: 0;
}

.cguFont {
  color: #617f9c;
  text-decoration: none;
}
.cguFont:hover {
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .separator {
    display: none;
  }

}
