.site-footer {
  background-color: #000000;
  color: white;
  padding: 2rem 3rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #ff0000;
}

.footer-section p,
.footer-section ul {
  margin: 0.8rem 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; 
}

.footer-section ul li {
  margin-bottom: 0.6rem;
  margin: 0;
}

/* mettre de l'espace avec le haut du footer */
.footer-section.links {
  margin-top: 2.2rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: bold;
}

.footer-section a:hover {
  color: #ff0000;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

.social-icon {
  width: 28px;
  height: 28px;
  margin-right: 0.5rem;
}

.social-icon:hover {
  transform: scale(1.15);
}

@media screen and (max-width: 768px) {
  .footer-section.links ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}