body{
    margin: 0;
    font-family: 'Poppins' , sans-serif;
    color: #333;
    
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header{
    background: linear-gradient( to right, rgb(194, 243, 70)  ,white);
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgb(0, 0, 0,0.1);
    padding: 15px 0;
    position: sticky;
    z-index: 10;
}
.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo{
    display: flex;
    align-items: center;
    
}
.logo img{
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 50%;
}
.logo-text h1{
    margin: 0;
    background: none;
    animation: fadeIn 0.6s ease;
    background: linear-gradient(90deg,#9212cd, #8f2450, rgb(245, 230, 65),rgb(74, 203, 35));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes fadeIn {
    from{ opacity: 1;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }    
   
}


.logo-text p{
    color: #555;
    font-size: 13px;
    margin: 0;
}
.navbar ul{
    list-style: none;
    display: flex;
    gap: 25px; 
    margin: 0;
    padding: 0;
}
.navbar a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar a:hover{
    color:white;
    background: to right, rgb(194, 243, 70)  ,rgba(251, 247, 247, 0.95);
    border-radius: 15px;
}

.carousel-contain{
    position: relative;
    width: 90%;
    overflow: hidden;
    background-color: whitesmoke;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}
.grid-wrapper{
 display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 1000px;
    height: 500px;
    
}
.grid-page{
   display: flex;
    gap: 10px;
    min-width: 100%;
    box-sizing: border-box;
    transition: transform 1s ease;
    
}
.item{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    text-align: center;
    overflow: hidden;
    flex: 0 0 100%;
    transition: transform 1s ease-in-out;
}
.compteur{
    size: 34px;
    border-radius: 15px;
    background: rgb(194, 243, 70);
    color: white;
    padding: 3px 17px;
    font-size: 0.8em;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #43a047;
}
.hero{
    background: url(eco/145f8cbb313d8307fbfe7a5a55aa6a49.jpg);
    text-align: center;
    padding: 120px 20px;
    background-size: cover;
    position: relative;
    color: rgb(255, 244, 244);
    
}
.hero h2{
    font-size: 36px;
    color: #85e48a;
    margin-bottom: 15px;
}
.hero p{
    font-size: 36px;
    color: #555;
    margin-bottom: 10px;
}
.btn{
    background-color: #fff;
    color: #43a047;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}
.btn:hover{
    background-color: #43a047;
    color: #eee;
}
.produit{
    text-align: center;
    padding: 60px 20px;
    background-color: #fafafa;
}
.produit h3{
    color: #2e7d32;
    font-size: 28px;
    margin-bottom: 40px;
}
.produ{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.kil{
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgb(0, 0, 0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.kil:hover{
    transform: translateY(-5px);
}
.kil img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.kil h4{
    color: #388e3c;
    margin: 15px 0 5px;
}
.kil p{
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}
.about{
    background: #ffffff;
    padding: 60px 20px ;
    text-align: center;
}
.about-content h3{
    font-size: 16px;
    color: #388e3c;
}
.about-content p{
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto ;
}
.footer{
    background-color: #2e7d32;
    color: #eee;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}
.footer a{
    text-decoration: none;
    color: #eee;
    transition: color 0.3s;
}
.footer a:hover{
    color: #28bd30;
}
@media screen and (max-width: 992px) {
    
    .navbar ul{
        gap: 15px;
    }
    .hero h2{
        font-size: 32px;
    }
    .hero p{
        font-size: 16px;
    }
    

}
@media screen and (max-width: 768px) {
    
    .menu-toggle{
        display: block;
    }
    .navbar{
        display: none;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0 200px;
        border-radius: 15px;
        box-shadow: #333;
    }
    .navbar ul{
        flex-direction: column;
        align-items: left;
        padding: 10px 0;
        margin: 10px;
    }
    .navbar a{
        font-size: 18px;
        color: #43a047;
    }
    .navbar.show {
        display: block;

    }
    .hero{
        padding: 90px 15px;
    }
    .hero h2{
        font-size: 26px;
    }
    .hero p{
        font-size: 15px;
    }
    

}
