*{ /*enlever toutes les marges crées par les navigateurs */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body{
    background-color: #b1a28be1;
    align-items: center;
    justify-content: center;
    display: block;
    font-family:"Poppins";
}
header{
    position: sticky; /*pour que la barre descend */
    top:0px;
    background: linear-gradient(20deg,#3d3a3a82 , #5b544ee1 , #8f8579e1);
    height:60px;
    padding: 0;
}
header .nomrestau{ /*nom du restau*/
    justify-items: center;
    display: flex;
    justify-content: center;
    padding: 0px;
    margin-top: 0px;
    position: relative;
    top: 8px;
    height: 0px;
}
header .nomrestau img { /*logo du restau*/
  width: 59px;
  height: 49px;
  border-radius: 20%;
  margin-right: -15px;

}
header .nomrestau span{
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    background: none;
    color: rgb(208,180,140);
}

header.hidden { /*Pour l'animation de la navbar */
    transform: translateY(-100%);
    opacity: 0;
  }
  
  header{
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  

.nomrestau a {
    font-family:'Times New Roman', Times, serif;
    font-variant: small-caps;
    text-decoration: none;
    font-weight: 100;
    line-height: 25px;
    letter-spacing: 1px;
    text-shadow: 4px 4px 4px;
    color:rgb(208,180,140);
    font-size: 29px;
    padding: 11px;
    margin-left: 0px;
}
.fond a {
    float: right;
    font-size: 15px;
    font-family:'Times New Roman', Times, serif;
    text-decoration: none;
    font-weight: 100;
    letter-spacing: 1px;
    text-shadow: 0px 0px 2px;
    color:rgba(187, 152, 103, 0.968);
    margin-right: 10px;
}
.containermenu{ 
    height:100%;
    width:250px;
    position: relative;
    top: 0px;
    background: #b89d9d82;
    z-index: 1; 
    transition: 0.5s ease;
    transform: translateX(-250px);
    padding: 0;
}
.containermenu .head{
    color: #0c0c0c;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-variant: small-caps;
    padding:19.5px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    background: linear-gradient(30deg,#51494282 , #69635be1);
}
.icon{
    border-radius: 40%;
    width: 25px;
    margin: auto;
    padding: 0;
}
ol{
    width: 100%;
    list-style: none;
    background-color: #9d9280fd;
    border-radius: 5px
}
ol li{
    display: flex;
    width:100%;
    align-items: center; 
    margin-right: 10px;
}
ol li a{
    color: #000000;
    padding: 20px 60px;
    text-decoration: none;
    display: flex;
    font-size: 20px;
    font-variant: small-caps;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    text-transform: capitalize;
    width: 250px;
    text-align: center;
}
ol li:hover a{
    background: rgb(120, 112, 100);
    color: #0b0b0a;
    letter-spacing: 5px;
}
.boutonmenu{
    visibility: hidden;
    display: none;
}
.containermenu span{
    position: absolute;
    right:-70px;
    top:13px;
    border-radius: 3px;
    color: #1c1a1a;
    cursor: pointer;
    background: #847366;
    padding: 5px 9px;

}
#times{
    margin-top: 1px;
}
#bars{
    margin-top: 1px;
}
#check:checked ~ .containermenu{
    transform: translateX(0);
}
#check:checked ~ .containermenu #bars{
    display: none;
}
.fond{
    background-image: url(../images/images_contact/mainimage.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 460px;
    background-position: center;
    padding: 0;
    margin: 0; 
    text-decoration: none;
    list-style: none;
}
.contenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.champ{
    display: flex;
    padding: 7px;
    flex-wrap: wrap;
    width: 50%;
    padding-bottom: 13px;
}
.container{   /*bloc form*/
    background: linear-gradient(125deg, #a18961d8 , #a08062a1 , #715b40);
    /* max-width: 650px; */
    width:800px;
    padding: 28px;
    margin: 50px 28px;
    box-shadow: 0px 20px 20px #876d4ee5;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    border-radius: 23px;
}
.container h2{
    font-family: 'Times New Roman', Times, serif;
    font-variant: small-caps;
    color: rgb(45, 39, 33);
    text-shadow: 4px 4px 4px rgb(66, 53, 40);
    letter-spacing: 1px;
    font-size: 30px;
    margin-left: 12px;
}
.champ :nth-child(2n){
    justify-content: end;
}
.champ label , .gender{
    width: 90%;
    color: #000000;
    font-size: small;
    font-weight: 600;
    padding: 1.5px 2px;
}
.champ input {
    height: 35px;
    width: 95%;
    padding: 3px 10px;
    border-radius: 1px;
    border: 1px solid #1d1814;
    outline: none;
    background: rgba(224, 211, 201, 0.852);
    border-radius: 7px;
}
.champ .password{
    position: relative;
    width: 100%;
}
.champ textarea{
    border: 1px solid #1d1814;
    background: rgba(224, 211, 201, 0.852);
    width: 95%;
    border-radius: 7px;
}
.champ #message {
    color:gray;
}
.champ .password input[type="password"]{
    padding-right: 30px;
}
.gender-category {
    color: #000;
}
.gender-category label{
    padding: 0 30px 0 8px;
    font-size: 14px;
}
.gender-category label , .gender-category input {
    cursor: pointer;
}
.alert p{
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: rgb(0, 0, 0);
    margin: 3px 6px;
    padding: 10px;
}
.alert span{
    color: #6c460dec;
    font-size: 15px;
    font-weight: 200;
    font-style: oblique 220deg;
}
.buttomcontainer{
    margin: 15px 0;
}
.buttomcontainer button{
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    font-size: 17px;
    color: #000000;
    border:none;
    border-radius: 5px;
    background-image: linear-gradient( to left ,#584832fa,#695333)
}
.buttomcontainer button:hover{
    background-image: linear-gradient( to left ,#44341b,#88704ffa);
}
.container-map {
    background: linear-gradient(125deg, #a18961d8 , #a08062a1 , #715b40);
    width: 820px;
    box-shadow: 0px 20px 20px #876d4ee5;
    padding: 0; 
    margin: auto;
    border-radius: 18px;
    margin-bottom: 40px;
    
}
.container-map iframe {
    width: 98%;
    height:350px;
    border:0;
    border-radius: 8px;
    margin-left: 8px;

}
.container-map h2{
    font-size: 25px;
    font-weight: bold;
    color: #2c1500d3;
    text-align:center;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000bd;
    padding: 4px;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    font-variant: small-caps;
    text-shadow: 4px 4px 4px rgb(111, 85, 60);
}
img{
    width: 25px;
    border-radius: 0cm;
}
.container-map h2 , img{
    display: flex;
    text-align: center;
    justify-content: center;
}
@media(max-height:800px){
    footer {
        position: static;
    }
    header{
        padding-top:0;
    }
}
.footer{
    background: linear-gradient(100deg, #7a6847d8 , #a58363a1 , #624f37);
    box-sizing: border-box;
    text-align: left;
    padding: 35px 50px ;
    display: flex;
    align-items: center;
}
.footerCenter, .footerRight, .footerLeft{
    display: inline-block;
    vertical-align: top;
}
.footer .footerCenter{
    width:30%;
    text-align: center;
}
.footer .logo{
    width: 50px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 20px;

}
.footer .logo img{
    width:80px;
}
.footer h3{
    color: #ecd6bdd2;
    font-size:20px;
    font-family:'Times New Roman', Times, serif;
    font-weight: 500;
    font-variant: small-caps;
    letter-spacing: 1px;
}
.footer .footerLinks{
    color: #010000;
    margin:20px 0 12px;
}
.footer .footerCenter a{
    display: inline-block;
    line-height: 1.7;
    text-decoration: none;
    color:#000000;
    margin-right: 2px;
    text-decoration: none;
}
.footerLinks a:hover{
    transition: 0.01s;
    border-bottom: 0.01cm solid #d8c7d8d3 ;
}
.footerCompanyName{
    color: #110a029f;
    font-size: 11px;
    font-weight:lighter;
    margin:5px;
    margin-left: 2px;
}
.footerCompanyName strong{
    color: #000000;
    font-style: italic;
    font-weight: 300;
}
.footerLeft .reseaux h3{
    margin-bottom: 20px;
    color: #d4b88c;
    text-shadow: 5px 5px 5px rgb(40, 25, 7);
}
.footerLeft ul {
    list-style: none;
    margin:2px;
    margin-right: 30px;
    text-decoration: none;
} 
.footerLeft ul a { 
    color: #000000;
    text-decoration: none;
    margin: 2px;
    align-items:center;
    display:flex;
    height: 20px;
    margin-bottom: 10px;
    border-radius: 20px;
    margin-top: 8px;
    list-style: none;
}
.listeMedia li a:hover {
    transition: 0.01s;
    font-weight: 700;
    border-bottom: 1px solid #f3f2f78f;
} 
.footerRight{
    display: block;
    margin-left: 150px;
}
.footerRight h3{
   margin-bottom: 29px;
   color: #d4b88c;
   text-shadow: 5px 5px 5px rgb(40, 25, 7);
}
.footerRight li{
    color: #000000;
    font-size: 13px;
    font-weight: 600;   
    list-style: none;
    margin-top: 12px;
    display: flex;
}
.footer img{
    float:left;
    margin-right:10px;
 }

.footerRight li p{
    color: #000000b6;
    height: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

