/* footer.css : Styles dédiés au footer du site INSANE IDENTITY */

.footer, .optimized-footer, .compact-footer {
  background: #111 !important;
  color: #fff !important;
  padding: 2.5em 0 1.2em 0;
  width: 100%;
  border-top: 1px solid #222;
  box-sizing: border-box;
  display: block;
  font-size: 1em;
  text-align: center;
  z-index: 10;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.10);
}

.footer-bottom-bar, .compact-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5em;
  padding-bottom: 1.2em;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 0.98em;
}

.footer-sep {
  margin: 0 0.4em;
  color: #bdbdbd;
}

.footer-legal-link {
  color: #1793B2;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: #00AEEF;
  text-decoration: underline;
}

.footer-copyright {
  color: #fff;
  font-size: 1em;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-bottom-bar {
    padding-bottom: 0.7em;
  }
  .footer-bottom-links {
    font-size: 0.93em;
    gap: 0.2em;
  }
}
