/* ==========================================
   Khati Shad by Takia
   Premium Recipe CSS
========================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:
    "Noto Sans Bengali",
    sans-serif;

    background:#fafafa;

    color:#333;

}




/* ==========================
Recipe Header
========================== */


.recipe-header{

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),
    url("images/recipe-bg.jpg");

    background-size:cover;

    background-position:center;

    color:white;

}



.recipe-header h1{

    font-size:42px;

    font-weight:800;

}



.recipe-header p{

    font-size:18px;

}




.recipe-tag{

    display:inline-block;

    background:#198754;

    color:white;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:20px;

}





/* ==========================
Recipe Card
========================== */


.recipe-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}



.recipe-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);

}



.recipe-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}




.recipe-card h4{

    font-weight:700;

}




.recipe-card p{

    color:#666;

    min-height:55px;

}





.recipe-card .btn{

    border-radius:30px;

}





/* ==========================
Details Hero
========================== */


.recipe-hero{

    position:relative;

    height:500px;

    overflow:hidden;

}



.recipe-hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}




.recipe-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.45)
    );

    display:flex;

    align-items:center;

    color:white;

}



.recipe-overlay h1{

    font-size:48px;

    font-weight:800;

}



.recipe-overlay p{

    font-size:20px;

    max-width:700px;

}




.recipe-badge{

    background:#198754;

    padding:8px 18px;

    border-radius:50px;

    display:inline-block;

}




.recipe-info{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:25px;

}



.recipe-info span{

    background:white;

    color:#333;

    padding:10px 18px;

    border-radius:30px;

    font-weight:600;

}





/* ==========================
Premium Box
========================== */


.premium-box{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:

    0 10px 35px rgba(0,0,0,.08);

}




.premium-box h2{

    font-weight:800;

    margin-bottom:25px;

}





/* ==========================
Ingredients
========================== */


.ingredient-list{

    list-style:none;

    padding:0;

}



.ingredient-list li{

    padding:12px 0;

    border-bottom:1px solid #eee;

    font-size:18px;

}



.ingredient-list i{

    color:#198754;

    margin-right:10px;

}





/* ==========================
Steps
========================== */


.step-item{

    background:#f8f9fa;

    padding:20px;

    border-radius:15px;

    margin-bottom:15px;

}



.step-item h4{

    color:#198754;

    font-weight:700;

}





/* ==========================
Product Box
========================== */


.product-box{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:

    0 10px 35px rgba(0,0,0,.08);

}



.product-box img{

    max-height:350px;

    object-fit:contain;

}



.product-box h2{

    font-weight:800;

}




.product-box h3{

    color:#198754;

    font-weight:700;

}





/* ==========================
Related Recipe
========================== */


.card{

    border:none;

    border-radius:20px;

    overflow:hidden;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

}



.card img{

    height:220px;

    object-fit:cover;

}





/* ==========================
Buttons
========================== */


.btn-success{

    background:#198754;

    border:none;

}





/* ==========================
Mobile Responsive
========================== */


@media(max-width:768px){



.recipe-header h1{

    font-size:30px;

}



.recipe-hero{

    height:400px;

}



.recipe-overlay h1{

    font-size:32px;

}



.recipe-overlay p{

    font-size:16px;

}



.recipe-info{

    gap:10px;

}



.recipe-info span{

    padding:8px 12px;

}



.recipe-card img{

    height:220px;

}



.premium-box,
.product-box{

    padding:20px;

}



}
.video-wrapper{

    width:100%;
    max-width:700px;
    margin:0 auto;

    aspect-ratio:16/9;

    border-radius:18px;
    overflow:hidden;

    background:#000;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.video-wrapper video,
.video-wrapper iframe{

    width:100%;
    height:100%;

    border:none;

    display:block;

    object-fit:cover;

}
