/* Styles du footer */

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-transform: uppercase;
  height: auto;
  border-top: 1px solid var(--black-color);
}

.footer-nav {
  display: flex;
  gap: 2em;
}

.footer-menu {
  display: flex;
  gap: 2em;
}

/* Styles pour les écrans plus petits */

@media (max-width: 575px) {
  .site-footer {
    flex-direction: column;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .footer-copyright {
    margin-top: 1em;
  }
}
