/* Archivo: reserva.css */

/* Estilo general para el cuerpo */
body {
    font-family: 'Lato', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Estilo para el h1 */
h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2 {
    color: #333 !important;
}

/* Estilo compartido con index.php */
.form-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  color: white;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    background-color: #fff;
    color: #000;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.form-control::placeholder {
    color: #888;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover {
    background-color: #444;
}

/* UX: Progreso visual de pasos */
#progreso span {
    font-size: 1.1rem;
    color: white !important;
}
#progreso small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: white !important;
}

/* Responsivo para tablet */
@media (max-width: 768px) {
    .form-container {
        width: 90%;
    }
    h1 {
        font-size: 2rem;
    }
}

/* Responsivo para m車viles */
@media (max-width: 576px) {
    .form-container {
        width: 90%;
        padding: 20px;
    }
    h1 {
        font-size: 1.8rem;
    }
    label {
        font-size: 0.95rem;
    }
}


 #modalResumen .modal-content {
    background-color: #666666;
    color: #ffffff; /* Para que el texto sea legible */
  }

  #modalResumen .modal-header,
  #modalResumen .modal-footer {
    border: none;
  }

  #modalResumen .btn-close {
    filter: invert(1); /* Cambia el color del botón de cerrar */
  }
  
 .is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
