/* Reset básico y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
.reservas-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('./images/reservas-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.reservas-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reservas-header p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Container principal */
.reservas-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Estilos del formulario */
.reservas-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Estilos de la sección de información */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card,
.horario-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h3,
.horario-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-card ul {
    list-style-position: inside;
    color: #666;
}

.info-card li {
    margin-bottom: 10px;
}

.horario-card p {
    color: #666;
    margin-bottom: 8px;
}

/* Media queries */
@media (max-width: 968px) {
    .reservas-container {
        grid-template-columns: 1fr;
    }

    .reservas-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .reservas-header h1 {
        font-size: 2rem;
    }

    .reservas-form-container {
        padding: 20px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
    }
}