/* SECTION RESERVATION en plein écran */
.reservation-section {
    position: relative;
    height: 100vh;
    color: white;
    background-image: url('images/bg-reservation.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fond sombre + largeur responsive */
.reservation-section .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
}

.reservation-form-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 15px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form select {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

form .btn-reserver {
    margin-top: 25px;
    padding: 12px;
    background-color: transparent;
    color: cyan;
    border: 2px solid cyan;
    cursor: pointer;
    transition: 0.3s ease;
}

form .btn-reserver:hover {
    background-color: cyan;
    color: #000;
}
