.header_conteneur {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
  width: 100%;
  height: 160px;
  padding: 0.4rem 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo img {
  width: auto;
  height: 130px;
  max-height: 100%;
  object-fit: contain;
}

.bouton_details {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #44ca68;
  border: 0.1rem solid #064e38;
  border-radius: 1.5rem;
  color: #ffffff;
  font-weight: bold;
  width: fit-content;
  padding: 1rem 1.5rem;
  margin: 0; /* IMPORTANT : enlève les marges */
  font-size: 0.7rem; /* réduit pour tenir sur mobile */
  line-height: 1;
  text-align: center;
  font-weight: bold;
  word-break: normal;
  overflow-wrap: break-word;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 0;
  min-height: 0;
}

.bouton_details:hover {
  background-color: #00b050; /* un peu plus foncé au survol */
}

.menu_du_moment {
  padding: 20px;
}

.conteneur {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2rem 0;
  background-color: #dbeafe;
  border: 0.1rem solid #064e38;
  border-radius: 1.5rem;
  min-height: 180px;
  padding: 1rem;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(1rem, 3vw, 1.8rem);
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

h2 {
  font-size: clamp(0.6rem, 2.5vw, 1.8rem);
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.1;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
