/* -------------------------------- */
/** RESET VALEUR **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* -------------------------------- */
.formulaires {
    background-image: url("./images/background/background.jpg");
    background-repeat: no-repeat;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    height: 100%;
}
/* -------------------------------- */
            /* HEADER */
/* -------------------------------- */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-decoration: none;
    background-color: #000000;
    height: 5rem;
    width: 100%;
}
header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5rem;
    list-style: none;
}
header nav ul li{
    text-decoration: none;
}
header nav ul li a{
    text-decoration: none;
    color: #f0f8ff;
    font-size: 19px;
}
/* -------------------------------- */
            /* MAIN */
/* -------------------------------- */
/* TITLE */
.formulaires .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}
.formulaires .title h1{
    color: #000000;
    font-size: 40px;
}
.formulaires .title p{
    padding: 0.5rem;
    color: #ffffff;
    font-size: 19px;
}
/*------------ FORMULAIRE  ------------------*/
.container-formulaire {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000a6;
    border-radius: 2%;
    width: 50rem;
    color: #ffffff;
    gap: 0.6rem;
    padding: 1rem;
    font-size: 19px;
}
/* -------------------------------- */
            /* JS */
.regime-hidden {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center; 
    display: none;
    color: #ffffffdc;
}
.formulaires .regime-hidden .title p:last-child{
    color: #22dd32de;
    font-size: 20px;
}
.choix-regime {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.5rem;
}
.choix-maison-option {
    display: flex;
    justify-content: center;
    gap:  2rem;
    padding: 0.5rem;
}
/* -------------------------------- */
/* LOGEMENT */
.container-cards {
    display: flex;
    justify-content: center; 
}
.logement-resultat .title {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    font-size: 25px;
}
#container-logement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
/* -------------------------------- */
/* CARDS */
.logement {
    color: #000000;
    background-color: #ffffff49;
    border: solid 1px #00000056;
    border-radius: 3%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-around;
    padding: 1rem;
}
.logement img{
    height: 300px;
    width: 480px;
}
.logement p:nth-child(2){
    color: #000000;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.logement p:nth-child(3){
    color: #3e21e1;
    text-align: center;
    font-size: 21px;
    font-weight: 550;
}
.logement p:nth-child(4){
    color: #000000;
    font-size: 21px;
}
.logement .item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.logement .item p:first-child{
    color: #218694;
    font-size: 25px;
    font-weight: 600;
}
/* -------------------------------- */
/* BUTTON RECHERCHER FORMULAIRE */
.cta-recherche {
    display: flex;
    justify-content: center;
    padding: 1rem;
}
#search {
    padding: 0.6rem;
    border-radius: 5%;
    border: solid 1px #ffffff;
    background-color: #000000;
    color: #ffffff;
}
#search:hover {
    background-color: #ffffff;
    color: #000000;
}
/* -------------------------------- */
/* RESULTAT FORMULAIRE */
.resultat-reservation {
    background-color: #000000a6;
    color: #ffffff;
    border-radius: 2%;
    width: 50rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*------------ JS  ------------------*/
/* COULEUR GREEN RESULTAT VALIDE OU NON-VALIDE */
.green-ok {
    color: #0deb0dcc;
}
.red-nok {
    color: #ff1c1c;
}
.resultat-reservation h2{
    font-size: 20px;
}
.resultat-reservation ul{
    list-style: none;
    font-size: 18px;
}
/* -------------------------------- */