/* Recipe Details Page */
.recipe-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Alfa Slab One", serif;
    font-weight: 300;
    font-style: normal;
}

.recipe-content {
    max-width: 800px;
    margin: 30px auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Alfa Slab One", serif;
    font-weight: 0;
    font-style:normal;
}

.recipe-content h2 {
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 5px;
}

.recipe-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
}

  
.recipe-header h1 {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Kaushan Script', serif;
}

.recipe-header-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.recipe-header-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.author-recipe-details-page, 
.date-recipe-details-page {
    font-size: 14px;
    color: gray;
    text-align: center;
}

.recipe-header h2 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 1.5rem;
    padding-bottom: 5px;
}

.recipe-details-page pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
}



/* Responsive Styling */
@media screen and (max-width: 768px) {
    .recipe-details-page {
        padding: 1.5rem;
    }

    .recipe-details-page-image img {
        max-width: 100%;
    }
}