/* Reservation Section Styling */
.reservation-section {
    padding: var(--section-padding);
    background-image: linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)), url('../assets/images/res-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}

.reservation-container {
    width: 100%;
    max-width: 800px;
}

.reservation-form-wrapper {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem 2rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--border-radius);
    text-align: center;
}

.reservation-form-wrapper h2 {
    margin-bottom: 3rem;
    font-size: var(--fs-h2);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form input, .booking-form select {
    background: var(--bg-dark);
    border: 1px solid #333;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem; /* Prevents iOS zoom */
    width: 100%;
    transition: var(--transition-smooth);
}

.booking-form input:focus, .booking-form select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Native Picker Overrides */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
    
    .reservation-form-wrapper {
        padding: 5rem;
    }
}
