/* Footer global */
.footer {
  width: 100%;
  background: linear-gradient(to left, #b91c1c, #fee2e2, #ffffff);
  color: #000;
  padding: 2rem 0;
  position: relative;
  z-index: 50;
}

/* Conteneur principal */
.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Branding */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-logo {
  height: 5rem;
  cursor: pointer;
}

.footer-slogan {
  font-weight: bold;
  font-size: 1rem;
}

/* Copyright */
.footer-copyright {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}
