
.hero {
    background-image: url('../Pictures/heroImage-Recipe.webp');
    background-size: cover;
    background-position: center;
    margin-top: 5px;
    height: 85vh;
}
.hero .hero_content {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    padding-top: 100px;
    padding-right: 0;
    width: 55em;
}

.hero .hero_content .datahead {
    text-align: center;
    font-size: 45px;
    color: #376079;
    text-shadow: 0 0 8px #fff;
}

.yummy{ 
    font-size: 85px;
    color: #ff4500;
    text-shadow: 0 0 8px #2f4858;
    padding-bottom: 15px;
}

.hero .hero_content p {
    text-align: center;
    padding-inline: 55px;
    line-height: 1.4em;
    margin-top: 30px;
    font-size: 22px;
    color: #132631;
}



.recipe-cards {
    display: grid;
    grid-template-columns:  repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 10px;
    padding-inline: 100px;
    padding-top: 40px;
    
}


.recipe-card {
    width: 350px;
    margin: 5px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 2px solid #2e2c2c;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.recipe-card .recipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
}

.recipe-card:hover .recipe-info {
    transform: translateY(0);
}

.recipe-card .recipe-info h2 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #ff4500;
}

.recipe-card .recipe-info p {
    font-size: 18px;
    line-height: 1.5em;
    text-align: justify;
}

#recipe {
    font-size: 3rem;
    margin-top: 50px;
    /* margin-bottom: 10px; */
    font-family: cursive;
    text-align: center;
    color: #ff4500;
}




.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    padding-inline: 50px;
    justify-content: center;
}


.video-card {
    flex: 1 1 calc(50% - 40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin: 10px;
}


/* .video-card iframe {
    width: 100%;
    height: 200px; 
    border-radius: 10px 10px 0 0;
} */

.video-card iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.video-description {
    padding: 10px;
    font-size: 18px;
    line-height: 1.5em;
    color: #333;
    text-align: center;
    background-color: #f9f9f9;
}

#videoh1{
    text-align: center;
    /* margin-top: 60px; */
    font-size: 4em;
    margin-bottom: 25px;
    font-weight: bolder;
    color: #ff4500;
    font-family: cursive;
}
