/* RESET BOX MODEL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

footer {
  font-size: 14px;
  width: 100%;
}

.footer_conteneur {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 1rem;
  min-width: 0;
  width: 100%;
  padding: 0.5rem;
  align-items: stretch;
}

.horaires,
.cgv,
.mentions_legales {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: 0;
  text-align: center;
}

/* SPÉCIFIQUE AUX HORAIRES */
.horaires {
  flex-direction: column;
  padding: 0.5rem;
  gap: 0.3rem;
  font-size: clamp(10px, 2vw, 16px);
}

/* TITRE */
h2 {
  font-size: clamp(1rem, 4vw, 2rem);
  line-height: 1.1;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.bouton_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #44ca68;
  border: 0.1rem solid #064e38;
  color: #ffffff;
  border-radius: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  width: 100%;
  min-height: 60px;
  padding: 0.5rem;
  margin: 0;
  font-size: clamp(10px, 2vw, 14px);
}

.bouton_footer:hover {
  background-color: #00b050;

}