/* .. */


body {
    font-family: Arial, sans-serif;
    background-color: #f4efe3;
}

.l_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}


/* Reservation Section */
.L_reservation-section {
    width: 60%;
    background-color: #333;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    

    
}

.L_reservation-section h1 {
    font-size: 24px;
    color: #f0c040;
    margin-bottom: 10px;
    font-weight: bolder;
    font-size: 35px;
}

.L_reservation-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-size: 25px;
}

.L_reservation-section form {
    display: flex;
    flex-direction: column;
}

.L_reservation-section input,
.reservation-section textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.L_reservation-section input::placeholder,
.reservation-section textarea::placeholder {
    color: #ccc;
}

.L_reservation-section button {
    padding: 15px;
    background-color: #f0c040;
    color: #333;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.L_reservation-section button:hover {
    background-color: #EDC78E;
}
