@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@100;300;400;700;900&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    position: relative;
    height: 100%;
}
.col-12{
    width: 100%;
}
.col-8{
    width: 65%;
}
.col-6{
    width: 50%;
}
.col-5{
    width: 35%;
}
.col-4{
    width: 30%;
}
.col-3{
    width: 23%;
}
.col-2{
    width: 20%;    
}
.hero {
    width: 100%;
    height: 50vh;
    background-color: gray;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   
}

.hero .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.hero .hero-content {
    width: 100%;
    height: 50vh;
    position: absolute;
    z-index: 99;
}

.hero .hero-content .content {
    margin-top: 150px;
    text-align: center;
    align-items: center;

}

.hero .hero-content .link {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-content a {
    text-decoration: none;
    color: white;
}

.hero .hero-content .link u {
    background-color: transparent;
    color: #FEA53D;
}

.hero .hero-content a:hover {
    color: #FEA53D;
}

.hero .hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #FEA53D;

}

.hero .hero-content .content p {
    font-size: 25px;
    font-weight: 600;
    margin-top: -20px;
    margin-left: 50px;
    color: #ddd;

}

/* section-service  */
.section-service{
    width: 100%;
    height: 100%;
}
.content .title{
    padding: 0 80px;
    text-align: center;
    /* border: 1px solid green; */
    font-size: 20px;
}
.content .title h1{
    font-size: 35px;
    color: #FEA53D;
    padding-bottom: 20px;
}
.section-service .service-list{
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.section-service .service-list .card{
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 8px;
}
.section-service .service-list .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(20%);
    position: absolute;
}
.section-service .service-list .card .text{
    padding: 30px 20px;
    position: absolute;
    z-index: 90;
    text-align: center;
    /* color: rgb(236, 234, 234); */
}
.section-service .service-list .card .text h3{
    text-align: center;
    font-size: 22px;
    color: #FEA53D;
    margin-bottom: 10px;
}

/* section chef  */
.section-chef{
    width: 100%;
    height: 100%;
}
.section-chef .chef-list {
    width: 100%;
    margin-top: 30px;
}
.section-chef .chef-list .card{
    width: 100%;
    height: 300px;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    margin-top: 30px;
    gap: 60px;
}
.section-chef .chef-list .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-chef .chef-list .card .text{
    padding: 30px 0;
}
.section-chef .chef-list .card .text h3{
    font-size: 26px;
    color: #FEA53D;
    margin-bottom: 20px;
}
.section-chef .chef-list .card .text p{
    font-size: 20px;
    color: #ddd;
}

