*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
       text-decoration:none;
}
body{
    font-family: poppins;
    background-image: url(rr.avif);
    background: cover;
    height: 100vh;
    width: 100vw;

}

.navbar{
    position: absolute;
    margin: 10px;
    padding: 10px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 98%; 
    box-sizing: border-box;
   

}
.navbar a{
    color: white;
}
.navbar .logo {
    font-size: 2em;
    font-weight: bold;
   

}
.navbar .nav-links ul{
    display: flex;

}
.navbar .nav-links ul li{
    margin: 0 25px;

}
.navbar .nav-links ul li.active a {
    color:#ed3c57;
    font-weight: 600;

}
.navbar .menu-humberg{
    display: none;
    position: absolute;
    top: 10px;
    right: 50px;
    width: 35px;
    border-radius: 10px;

}

.content{
    background-image: url(image/bacground.webp);
    background-size: cover;
    background-repeat: no-repeat;
     background-position: center center;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #424144;
    height: 75vh;
}
.content h1{
    font-size: 40px;
}
.content p{
    font-size: 20px;
    margin-top: 20px;
}
.content button{
    margin-top: 30px;
    padding: 15px 30px; 
border: none;
    background: #f63e4e;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.content button a{
    color: white;
    font-weight: bold;
}
.produits_texte{
    text-align: left;
    font-size: 30px;
    font-weight: 300;
    margin-top: 30px;
    margin-left: 80px;
    color: #f63e4e;
}
.section-produits{
padding:40px 5% ;
}

.produits{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
}
.produits .carte{
    width: 310px;
    background-color: #f5f5f5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom: 20px;

}
.produits .carte .img{
    height: 250px;
    width: 100%;
    border-radius: 10px;
}
.produits .carte .desc{
    padding: 5px 20px;
    opacity: 0.8;
}
.produits .carte .titre{
    font-weight: 900;
    font-size: 20px;
    color: #424144;
    padding: 0 20px;
}
.produits .carte .box{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.produits .carte .prix{
    color: #f63e4e;
    font-size: 20px;
    font-weight: bold;
}
.produits .carte .achat {
    font-size: 13px;
    font-weight: bold;
    color: #f63e4e;
    padding: 10px 18px;
    border-radius:5px ;
}
.produits .carte .box .achat:hover{
cursor: pointer;
background: black;
color: white;
}
footer{
    background: #f3f4f6;
    height: 10vh;
}
footer p{
    text-align: center;
    line-height: 10vh;
}
footer p a{
    text-decoration: none;
    color: #f63e4e;
    font-weight: bold;

}
.descri{
    font-size: 1.5em;
    color:black;
    padding: 10px;
    background-color: whitesmoke;
    margin-top: 30px;
    text-align: center;
}
.entete{
    margin-top: 30px;
}
@media screen and (max-width:800px) {
    .navbar{
        padding: 0;
        margin: 0;
    }
    .navbar .menu-humberg{
        display: block;
    }
    .nav-links{
        top: 0;
        left: 0;
        right: 0;
        position: absolute;
        background-color: rgba(17, 16, 16, 0.5);
        backdrop-filter: blur(10px);
        width: 100vw;
        height: 100lvh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
    }
    .navbar .nav-links ul li{
        margin:25px 0;
        font-size: 2em;
    }
    .nav-links.mobile-menu{
        margin-left: 0;
    }
        
    .nav-links ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .navbar .logo {
        position: absolute;
        top: 10px;
        padding-left: 10px;
        
        
    
    }
    
}
