.header_conteneur {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    min-width: 0;
    min-height: 72px;
    width: 100%; 
    padding: 0.4rem ;
    gap: 0.5rem;
    flex-wrap: nowrap; 
    box-sizing: border-box;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo img {
  width: auto;
  height: clamp(50px, 8vw, 110px);
  max-height: 100%;
  object-fit: contain;
}

h1 {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

/* Code pour Tablettes : largeur entre 762 et 1023 pixels*/
@media screen and (min-width: 762px) and (max-width: 1023px) {
  .bloc-bouton {
    width: 100%;
    align-items: stretch;
    gap: 0.5rem;
  }

  .bouton1 {
    font-size: 0.85rem;
    height: auto;
    min-height: 55px;
    padding: 0.8rem;
  }

  .footer-conteneur {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .horaires {
    font-size: 0.95rem;
    gap: 0.8rem;
    padding: 1rem;
  }
}
/* Code pour Ordinateur : largeur supérieure à 1023 pixels (à partir de 1024 pixels */
@media screen and (min-width: 1024px) {
  body {
    max-width: 1400px;
    margin: 0 auto;
  }

  .bloc-bouton {
    width: 100%;
    align-items: stretch;
    gap: 0.8rem;
  }

  .bouton1,
  .bouton2 {
    width: 50%;
    font-size: 1rem;
    min-height: 60px;
    padding: 1rem;
  }

  .footer-conteneur {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
  }

  .horaires {
    font-size: 1rem;
    gap: 1rem;
    padding: 1rem;
  }

  h2 {
    font-size: 2rem;
  }
}
