@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Work Sans", sans-serif;
    padding: 0;
    margin: 0;
}
.btn{
    background: #52c303FF;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 90%;
}

#hero{
    color: aliceblue;
    background: linear-gradient(to top, rgba(9, 9, 9, 1) 0%,rgba(16, 16, 16, 0) 100%), url('../assets/hero-bg.png');
    background-repeat: no-repeat;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: url('../assets/hero-bg.png'), linear-gradient(to bottom, rgba(9, 9, 9, 1) 0%,rgba(16, 16, 16, 0) 100%); */

}
#hero .hero-content{
    width: 650px;
    /* margin: 0px auto; */
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hero .hero-content .title{
    font-size: 40px;

}
#hero .hero-content .sub-title{
    font-size: 20px;
    opacity: 90%;
    font-weight: 600;
}
.description{
    font-size: 15px;
    opacity: 70%;
    padding: 0% 10px;
}
/* Card Box section styles*/
#card-box{
    height: 560px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-bottom: 50px;

}
#card-box .sub-title{
    font-size: 20px;
    opacity: 60%;
    font-weight: 600;
    padding-top: 80px;
}
.title{
    font-size: 30px;
    font-weight: 700;
    font-family: "Work Sans";
    
}
.product-name{
    padding: 10px 15px;
    background: #52c30326;
    border-radius: 8px;
    
}
.card-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.card{
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
}
.card-img{
    width: 100%;
}
.card img{
    width: 100%;
}
/* About us section */
#about-us{
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.foods-image{
    width: 50%;
}
.foods-image img{
    width: 100%;
}
.content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    
}

.title-h4{
    font-size: 20px;
    opacity: 60%;
}
.icon{
    display: flex;
    gap: 30px;
}
.icon img{
    height: 30px;
    width: 30px;
    cursor: pointer;
}
/* Card Section Style */
#card{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}
/* Social Section Style */
#social{
    background-image: url('/assets/social-bg.png');

}
.social-content{
    padding: 30px 0;
}
.h4-t{
    border: #10101033 solid 2px;
    padding: 20px 80px;
}

