.reservation-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reservation{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem;
    gap: 1rem;
    background-color: #903FC9;
    border-radius: 2rem;
    height: fit-content;
    margin-top: 200px;
}




h1{
    margin: 0 0 1rem 0;
    z-index: 97;
    font-family: 'Nerko One', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.4rem;
    color: #E0E3F6;
}

ul{
    list-style: none; 
    padding-left: 0; 
}

li{
    color: #E0E3F6;
    font-family: 'Montserat', sans-serif;
    font-size: 1.5rem;
    background-image: url('../images/fleche-D-clair.svg'); 
    background-repeat: no-repeat;
    background-size: 1.2rem 1.2rem; 
    padding-left: 2rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;
}


.reservation img{
    width: 100%;
    min-width: 400px;
    transition: ease-in-out 0.1s;
}

.reservation img:hover{
    transform: scale(1.02);
}

.image{
    width: 50%;
    display: flex; 
    justify-content: center;
    align-items: center;
}



.texte{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: fit-content;
}


.image-texte{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%
}

.contain-button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem;
}



.reservation p {
    color: #E0E3F6;
    font-family:  'Montserat', sans-serif;
    font-size: 1.4rem;
    width: 100%
}


#openModalBtn {
    padding: 10px 20px;
    font-size: 1.5rem;
    color: #1E2236;
    transition: ease-in-out 0.1s;
    border: none;
    background-color: #E0E3F6;
    width: fit-content;
    border-radius: 0.7rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    transition: ease-in-out 0.2s;
}

#openModalBtn:hover{
    background-color: #e0e3f600;
    box-shadow: inset 0 0 0 2px #e0e3f6;
    color: #E0E3F6;
    cursor: pointer;
  
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 98;
}



.formulaire{
    font-family: "Montserrat", sans-serif;
    margin: 15% auto;
    border: 0.7rem solid #903FC9;
    border-radius: 2rem;
    background-color: #E0E3F6;
    width: 60%;
    height: 60%;
    padding: 2%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99;
}

input{
    width: 60%;
}


.close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 50%;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
} 




@media (max-width: 1365px) {
    .image-texte {
        flex-direction: column-reverse;
    }

    h1{
        font-size: 1.7rem;
        letter-spacing: 0.2rem;
        text-align: center;
    }

    li{
        font-size: 1.2rem;
    }

    .texte{
        align-items: center;
    }

    .reservation p {
        font-size: 1.2rem;
        width: 100%
    }
}