/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fef8f5;
    color: #333;
}

/* Recipe Page Container */
.recipe-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Recipe Header */
.recipe-header {
    text-align: center;
    margin-bottom: 20px;
}

.recipe-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #444;
}

.recipe-description {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Recipe Image */
.recipe-image {
    text-align: center;
    margin: 20px 0;
}

.recipe-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ingredients Section */
.recipe-ingredients {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.recipe-ingredients h2 {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.recipe-ingredients ul {
    list-style-type: disc;
    margin: 10px 0 0 20px;
    padding: 0;
}

.recipe-ingredients ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #666;
}

/* Steps Section */
.recipe-steps {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recipe-steps h2 {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.recipe-steps ol {
    margin: 10px 0 0 20px;
    padding: 0;
}

.recipe-steps ol li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}


/* MEAL PAGE */

.meal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Meal Header */
.meal-header {
    text-align: center;
    margin-bottom: 20px;
}

.meal-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #444;
}

.meal-description {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Meal Image */
.meal-image {
    text-align: center;
    margin: 20px 0;
}

.meal-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ingredients Section */
.meal-ingredients {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.meal-ingredients h2 {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.meal-ingredients ul {
    list-style-type: disc;
    margin: 10px 0 0 20px;
    padding: 0;
}

.meal-ingredients ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #666;
}

/* Steps Section */
.meal-steps {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meal-steps h2 {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.meal-steps ol {
    margin: 10px 0 0 20px;
    padding: 0;
}

.meal-steps ol li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}


/*  /////////////////////////////  YOGA SECTION   //////////////////////////////////////////////// */

.yoga-section {
    margin-top: 40px;
    padding: 40px 20px;
    background: #f4f8fc; /* Light blue background for a calming effect */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.yoga-heading {
    font-size: 28px;
    font-weight: bold;
    color: #2a4d69; /* Deep blue for a fresh look */
    text-align: center;
    margin-bottom: 20px;
}

.yoga-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.yoga-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.yoga-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.yoga-text {
    font-size: 18px;
    line-height: 1.8;
    color: #445566; /* Muted dark color for readability */
    max-width: 600px;
}

.yoga-benefits {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.yoga-benefits h3 {
    font-size: 22px;
    font-weight: bold;
    color: #2a4d69;
    margin-bottom: 15px;
}

.yoga-benefits ul {
    list-style-type: disc;
    margin: 0;
    padding: 0 20px;
    text-align: left;
}

.yoga-benefits ul li {
    font-size: 16px;
    color: #445566;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .yoga-container {
        flex-direction: row;
        justify-content: center;
    }

    .yoga-content {
        flex: 1;
        text-align: right;
    }

    .yoga-benefits {
        flex: 1;
        text-align: left;
    }
}
