@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');



/* color{
    background-color:#EDE0D4;
    background-color:#E6CCB2;
    background-color:#DDB892;
    background-color:#B08968;
    background-color:#7F5539;
} */

body{
    background-color: #EDE0D4;
}

a.more_info{
    display: flex;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    padding: 16px;
    margin: 6px auto;
    background-color: #3C4F76;
    border-radius: 5px;
    width: fit-content;
    transition: all 0.3s;
}

a.more_info:hover{
    box-shadow: 0px 0px 10px #3C4F76;
}

h1{
    font-family: 'Merriweather', serif;
    font-weight: 900;
    margin: 10px;
}

h1, h2, h3, h4, h5, h6{
    color: #383F51;
}

p{
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

.header{
    background-color: #D1BEB0;
    border-radius: 5px;
    display: flex;
    position: fixed;
    top: 5px;
    width: 100%;
    margin-top: 3px;
    margin-left: 3px;
}

.logo{
    height: 60px;
    border-radius: 5px 0px 0px 5px;
}

.section_info{
    margin-top: 120px;
    text-align: center;
    color: #3C4F76;

}

.all_book{
    display: flex;
    transition: all 1s;
}

.all_book ul{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px;
    justify-content: space-around;
    /* background-color: #DDB892;
    border-radius: 5px; */
}

.all_book li{
    text-align: center;
    margin:2%;
    padding: 1% 3% 1% 3%;
    width: 10%;
    min-width: 220px;
    max-width: 250px;
    background-color: #FAFAFAa1;
    border-radius: 5px;
    /* transition: all 0.5s; */
}

.all_book>ul>li:hover{
    box-shadow: 0px 0px 15px rgba(127, 85, 57, 0.5);
    transition: all 0.5s;
}

.all_book img{
    width: 170px;
    border-radius: 5px;
}

.info_book, .info_book h3{
    color: #383F51;
    word-wrap: break-word;
}

textarea{
    font-family: /*'Merriweather',*/ serif;
    font-weight: 200;
    border-style: none;
    outline-style: none;
    box-shadow: none;
    resize: none;
    background-color: #FAFAFAa1;
    width: 100%;
    /* height: ; */

}

textarea:focus{
    border-style: none;
    box-shadow: none;
    outline-style: none;
}

.more_info_page{
    display: flex;
    background-color: #FAFAFAa1;
    padding: 20px;
    margin: 30px 2%;
    border-radius: 10px;
}

.submit_btn{
    justify-content: flex-end;
}

input{
    border-style: none;
    outline-style: none;
    box-shadow: none;
    resize: none;
    background-color: #FAFAFAa1;
    border-radius: 3px;
    height: 19px;
    width: 50%;
}

input:focus{
    border-style: none;
    box-shadow: none;
    outline-style: none;
    background-color: #ebdbce;
}

input:hover{
    border: none;
}

.content>textarea{
    border-radius: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 14px;
}
.content>textarea:focus{
    background-color: #ebdbce;
}
.info_book_info{
    display: block;
    justify-content: space-evenly;
    color: #3C4F76;
    word-wrap: break-word;
}

.book_img{
    width: fit-content;
}

.book_img img{
    border-radius: 5px;
    width: auto;
}

.description, .detail_info{
    margin: 0px 20px;
}

.detail_info{
    min-width: fit-content;
}

.contact_form{
    background-color: #D1BEB0;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.contact_form_page{
    display: flex;
    background-color: #FAFAFAa1;
    padding: 20px;
    margin: 30px 100px;
    display: block;
    justify-content: space-evenly;
	color: #3C4F76;
    text-align: center;

}

.recap_form{
    display: block;
    justify-content: space-evenly;
    padding: 15px;
    color: #000;
}

h4{
    margin: 0px;
}

@media screen and (max-width: 700px) {
    .more_info_page{
        flex-direction: column;
        align-items: center;
    }
    .book_img img {
        border-radius: 5px;
        width: 100%;
    }
}

/* -- register_form.php -- */

.registerForm{
    display: flex;
    margin-bottom: 100px;
    justify-content: center;
}

.register_ctnt{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: fit-content;
    width: 300px;
    background-color: #FAFAFAa1;
    padding: 25px;
    border-radius: 5px;
}

.register_ctnt input[type="text"], .register_ctnt input[type="submit"] {
    width: 100%;
}

.registerForm .register_ctnt .form-part1{
    display: flex;
    flex-direction: column;
}
.form-part>aside{
    width: 100%;
}

.form-part1>aside:nth-last-child(1){
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
}

.registerForm .form-part{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.registerForm .register_ctnt .form-part2{
    display: flex;
    flex-direction: column;
}

input[type="submit"]:hover, #genre_pref:hover, option:hover, input[type="radio"]{
    cursor: pointer;
    width: auto;
}

input[type="password"]{
    width: 100%;
}

.choice{
    display: flex;

}
/* - Fin register_form.php - */

/*CSS pour inscription*/
/*Bordure du form*/
form.login{
    border: 3px solid #000000;
    background-color: #E6CCB2;
    width: 30%;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 10px;
    margin-top: 60px;
    display: block;
}
/*les inputs*/
.login input[type=text]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}
/*Style pour les buttons*/
.header button.inscriptionbtn{
    background-color: #E6CCB2;
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    margin: 8px 10px;
    border: hidden;
    cursor: pointer;
    width: fit-content;
    border-radius: 10px;

}
.header button.entrer{
    background-color: #B08968;
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    display: block;
    margin: auto;
    border: hidden #000;
    cursor: pointer;
    width: 30%;
    border-radius: 20px;
}

.btn-header{
    position: absolute;
    right: 25px;
}
/*style pour le hover*/
.header button:hover{
    opacity: 0.8;
}
/*ajouter du padding pour les containers*/
.login .container{
    padding: 16px;
}
/*Oublie de mdp*/
.login .oublie{
    text-align: center;
    color: #000;
    
}
.login .linkoublie{
    color: #000;
    text-decoration: none;
}
/*le modal(arrière plan)*/
.login .modal{
    display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  padding-top: 60px;
} 
  /* boutton pour fermer */
  .login .close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
  }
  
  /* effets*/
  .login .close:hover,
  .login .close:focus {
    color: red;
    cursor: pointer;
  }

/* -- comment - detail.php -- */

.more_info_page_comment{
    height: fit-content;
    flex-direction: column;
}

.more_info_page_comment h3, .more_info_page_comment h5{
    margin: 0px;
    height: fit-content;
}

.more_info_page_comment h3{
    font-size: 22px;
}

.comment_list{
    margin: 5px;
}


.user_comment_info{
    display: flex;
    flex-direction: column;
    min-width: 100px;
    background-color: #d1beb056;
    border-radius: 10px 0 0 10px;
}

.user_comment_info p{
    margin: 10px auto;
    font-size: 10px;
}

.user_comment_info img{
    height: 25px;
    margin: 10px auto;
    border-radius: 100%;

}

.user_comment_ctnt{
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    width: 100%;
}

.comment{
    display: flex;
    background-color: #d1beb03a;
    border-radius: 10px;
    margin: 20px 0;
}

.user_comment_ctnt h5.comment_title{
    margin-bottom: 5px;
    font-size: 18px;
}

.user_comment_ctnt p{
    font-size: 15px;
    color: #3C4F76;
    margin-bottom: 5px;
}

/* - FIN comment - detail.php - */

/* -- administration.php -- */
.cadre {

    margin: 0;
    padding: 10px;
    background-color: #B08968;
}

.forecast > h1,
.day-forecast {
  border-radius: 15px;
    margin: .5rem;
    padding: 0.3em;
    font-size: 1.2em;
}

.day-forecast {
  display: flex;
  background-color: #E6CCB2;
  box-shadow: 3px 5px 10px black;

}


.day-forecast > h2,
.day-forecast > p {
    margin: .2rem;
    font-size: 15px;
}

.pages{
  display: flex;
  margin: auto 0px;
  position: relative;
  right: 0px;

}


.bouton{
   width: 30px;
   height: 30px;
  border-radius: 50%;
   display: inline-block;
   margin: 5px;
   box-shadow: 3px 5px 7px black;

}

.day{
  height: 70px;
  width: 60px;
  margin: 0;
  padding: 0.3em;
  background-color: white;
  margin-left: 7px;
  box-shadow: 3px 5px 10px black;
}

.day-forecast h3 {
    font-size: 16px;
    margin: 5px;

}

.usr-info-ctnt1{
    display: flex;
    flex-direction: column;
    margin:0 10px ;
    margin-left:40px ;
    margin-right: 340px;
}

.usr-info-ctnt2{
    display: flex ;
    flex-direction: column;
    margin: 0 10px ;
    padding-left: 0px;
    margin-right: 500px;
}

/* à ajouter  dans le css gitlab */
.formbtn{

  margin: auto 0px;


}
/* à ajouter  dans le css gitlab */


/* --FIN administration.php -- */


/* -- Debut userPanel_choix.php -- */
.contn{
    background-color: #EDE0D4;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: calc((90vh + (120px + 27px + 19.920px + 16px)) / 2 - 337px);
}
.objc{
    display: flex;
    opacity: 1;
    cursor: pointer;
    background-color: #cfae8d;
    border: 5px solid #09161d;
    border-radius: 8px;
    margin: 20px;
    padding: 150px;
    color: white;
    font-size: 24px;
    height: 100px;
    width: 100px;
}
.objc:hover{
    opacity: 0.8;
}
.choix_center{
    margin-left: auto;
    margin-right: auto;
}
.choix_reser{
    margin-left: -20px;
}
/* -- Fin userPanel_choix.php -- */

/* -- Debut userProfil.php -- */

.i_Border{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #B08968;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    height: 800px;
    width: 1560px;
    border: 3px solid #09161d;
    border-radius: 10px;
}
.pp_cont2{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #B08968;
    flex-basis: 30%;
}
.pp_cont1{
    display: flex;
    flex-direction: column;
    background-color: #B08968;
    flex-basis: 30%;
}
.pp{
    display: flex;
    background-color: rgba(255, 255, 255, 0.623);
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 40%;
    height: 250px;
    border: 2px solid #09161d;
    border-radius: 5%;
}
.info_bulles{
    display: flex;
    background-color: #E6CCB2;
    border: 2px solid #09161d;
    border-radius: 8px;
    height: 75px;
    font-size: 16px;
}
.pp_info{
    text-align: center;
    justify-content: none;
    font-size: 18px;
}
.back{
    background-color: #B08968;
    border: 2px solid #09161d;
    height: 50px;
    width: 100px;
    text-decoration:none;
    margin-left: 9%;
    border-radius: 10%;
}
.back_color{
    color: black;
}
/* -- Fin userProfil.php -- */

/* -- Debut userReservation.php -- */
.reser_Border{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
    background-color: #B08968;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 1675px;
    border: 3px solid #09161d;
    border-radius: 10px;
}
.reser_bulles{
    display: flex;
    background-color: #B08968;
    border: 2px solid #09161d;
    border-radius: 8px;
    margin: 10px 0px;
    height: 75px;
    font-size: 16px;
}
/* -- Fin userReservation.php -- */
