.chef-hero{

    background:url('../images/gallery/indian\ chef\ dark.jpg');

    background-size:cover;

    background-position:center;

    min-height:100vh;

    position:relative;
}

.chef-overlay{

    background:rgba(0,0,0,0.65);

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;
}

.chef-content h5{

    color:#f5c76b;

    letter-spacing:4px;

    font-size:20px;

    margin-bottom:20px;
}

.chef-content h1{

    color:white;

    font-size:5rem;

    font-weight:700;
    max-width:900px;
    margin:auto;

    line-height:1.1;

    margin-bottom:25px;
}

.chef-content p{

    color:#ddd;

    font-size:20px;

    max-width:850px;

    margin:auto;

    line-height:2;
}

.chef-btn{

    background:#f5c76b;

    color:black;

    padding:16px 42px;

    border-radius:50px;

    margin-top:35px;

    font-weight:600;

    font-size:18px;
}

.chef-btn:hover{

    background:white;

    color:black;
}
/* CHEF TEAM SECTION */

.chef-team-section{

    background:#000;

    padding:100px 0;
}

.chef-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    cursor:pointer;
}

.chef-card img,
.chef-card video{

    width:100%;
    height:500px;
    object-fit:cover;
    background:#111;
    display:block;
    background:#111;
    object-position:top;
    display:block;transition:0.6s;
}

.chef-card:hover img,
.chef-card:hover video{

    transform:scale(1.08);
}

.chef-card::after{

    content:'';

    position:absolute;

    inset:0;

    background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));

}

.chef-info{

    position:absolute;

    bottom:30px;

    left:30px;

    z-index:2;
}

.chef-info h3{

    color:white;

    font-size:32px;

    margin-bottom:10px;
}

.chef-info p{

    color:#f5c76b;

    font-size:18px;

    margin:0;
}
.chef-card{
    width: 100%;
}
.chef-card img,
.chef-card video{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
@media(max-width:576px){
    .chef-hero{
    background-size:cover;
    background-position:center;
    }

    .chef-content h1{

        font-size:3rem;
    }

    .chef-content p{

        font-size:16px;

        line-height:1.8;

        padding:0 12px;
    }

    .chef-content h5{

        font-size:15px;

        letter-spacing:2px;
    }
    /* chef team section */
     .chef-card img,
    .chef-card video{
        height:420px;
    }

    .chef-info h3{

        font-size:26px;
    }
}
/* @media (min-width: 768px) and (max-width: 991px) {

    .chef-card {
        width: 320px;
        margin: auto;
    }

} */