/* Estilos del banner a pantalla completa */
.fullscreen-vacation-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75); /* Fondo oscuro semi-transparente */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease-in-out;
  color: #fff;
}

.fullscreen-vacation-banner.hidden {
  opacity: 0;
  pointer-events: none; /* Deshabilita clics en el banner oculto */
}

.banner-container {
  position: relative;
  width: 90%;
  max-width: 600px; /* Ancho máximo para el contenedor del mensaje */
  background-color: #007bff; /* Color de fondo azul */
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.banner-container svg.feather-plane {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #fff;
}

.banner-container h1 {
  font-size: 2.5em;
  margin: 20px 0 10px 0;
}

.banner-container p {
  font-size: 1.2em;
  margin: 0 0 5px 0;
}

.apology-text {
  font-size: 1em;
  font-style: italic;
  opacity: 0.8;
  margin-top: 20px;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.close-button:hover {
  opacity: 1;
}

/* Adaptabilidad para móviles */
@media (max-width: 600px) {
  .banner-container {
    width: 95%;
    padding: 30px;
  }
  .banner-container h1 {
    font-size: 2em;
  }
  .banner-container p {
    font-size: 1em;
  }
}