

/* Boîte contenant le message */
.reservation-message-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  overflow: hidden;
  min-height: 250px;
  width: 100%;
}

/* Image transparente au-dessus du texte */
.overlay-image {
  position: absolute;
  top: 50%; /* ↩️ remonte l’image plus haut dans la boîte */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  max-height: 100%;
  opacity: 0.9;
  z-index: 3;
  pointer-events: none;
}

/* ======= BOX GÉNÉRIQUE POUR LES TEXTES ======= */
.reservation-box {
  border: 1px solid #000;        /* contour noir */
  border-radius: 10px;           /* coins arrondis */
  padding: 20px 24px;            /* marges internes */
  background: #047303;
  color: #000;                   /* texte noir par défaut */
  max-width: 900px;              /* largeur raisonnable */
  margin: 20px auto;             /* centrée horizontalement */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.15); /* petite ombre douce */
}

.reservation-box p {
  margin-bottom: 1em;
  line-height: 1.6;
}

/* Animation de clignotement */
@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

/* Bloc du message clignotant sous l'image */
.alert-resa {
  position: relative;
  z-index: 4; /* plus haut que tout pour bien apparaître */
  animation: blink 4s ease-in-out infinite;
  text-align: center;
  font-family: Verdana, sans-serif;
  color: #FFD700;
  margin-top: 30px;
}

/* Ligne du haut (grosse) */
.alert-resa .ligne-haut {
  font-size: 24px;
  font-weight: bold;
}

/* Ligne du bas (grosse aussi) */
.alert-resa .ligne-bas {
  font-size: 24px;
  margin-top: 10px;
  font-weight: bold;
}
