html{
    --couleur1: #D8BD8A;
    --couleur2: #785964;
    --couleur3: #B6B6B6;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: var(--couleur2);
}

header{
    background-color: var(--couleur1);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 0;
}
header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
    font-size: 25px;
}

header nav ul li a {
    text-decoration: none;
}

header nav ul li a.current-page {
    color: var(--couleur2);
}

header #panier {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    margin-top: 5px;
    height: 55px;
    width: auto;
}

header #logo {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px;
    margin-top: 15px;
    height: 55px;
    width: auto;
}

@media only screen and (max-width: 720px) {
    .nav-container {
        flex-direction: column;
    }

    header nav ul li {
        display: block;
    } 


}
/*----------------------------------*/
/*le footer*/

footer{
    padding:20px;
    background-color: #D8BD8A;
    width:100%;
            
}
.footer{
    width: 90%;
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:10px;
}
.footer_text{
    display: flex;
    flex-direction: column;
    
}
.footer_text p{
    margin-right: 10px;
}
.icone_follow{
    margin:0px;
    padding: 0px;
}
.horizontal{
    display: inline-block;
    list-style: none;
    width: 8%;
}
.horizontal img{
    clip-path: circle(40%);
    object-fit: cover;
    object-position: 50% 50%;
    width: 50px;
}

.field{
    display: flex;
    flex-direction: column;
    gap:5px;
    
}
.field input{
    width: 50%;
}
.field button{
    width:20%;
}
iframe{
   
    width: 300px;
    height: 250px;
    
}