
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #000000, #2b0000);
    color: #333;
    overflow-x: hidden;
}

.chefrecipe{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffffa5;
    box-shadow: 0 4px 10px rgba(221, 34, 34, 0.1);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0; 
    transform: translateX(-100px); 
    animation: slide-in 2s ease forwards;
}


@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.chefabout {
    flex: 1;
    text-align: center;
    padding-right: 20px;
    animation: slide-in-left 1.5s ease forwards;
    transform: translateX(-100px); 
    opacity: 0.5;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.chef-img {
    width: 300px;
    max-width: 300px;
    height: 300px;
    margin-bottom: 20px;
    margin-top: 150px;
    box-shadow: 0 10px 20px rgba(113, 122, 63, 0.5);
    border: #a5af4c double 15px;
}

.bio h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #a5af4c;
    
    
}

.bio p {
    font-size: 20px;
    line-height: 1.5;
    background-color: #a5af4ca1;
    padding: 30px;
}


.abtrecipe {
    flex: 1;
    text-align: center;
    padding-left: 20px;
    animation: slide-in-right 1.5s ease forwards;
    transform: translateX(100px); 
    opacity: 0.7;
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.recipe-img {
    width: 300px;
    max-width: 400px;
    height: 300px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 100px;
    box-shadow: 10px 20px 15px rgba(113, 122, 63, 0.5);
    border: #a5af4c double 15px;
}

.recipe-img:hover {
    transform: scale(1.05);
    box-shadow: 10px 20px 15px rgba(219, 255, 128, 0.5);
}

.details h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #000000;
    background-color: #a5af4c97;
    
}

.details p {
    font-size: 20px;
    margin: 5px 0;
    line-height: 1.5;
    padding: 30px;

    
}
.ingredient{
    background-color: #a5af4c9b;
    padding: 20px;
    font-size: 20px;
}
.chefabout h2{
    font-size: 38px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #a5af4c6e;
}
.videobg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures the video stays behind the content */
    overflow: hidden;
}
