
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}


.main_content_recipe {
    margin-bottom: 2rem;
}


.featured_contents {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(135deg, #fff9ef, #fff5e6);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}


.featured_contents_img_container {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.featured_contents_img_container img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured_contents_img_container img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}


.featured_contents_text_container {
    flex: 2;
    min-width: 280px;
}

.about_us_header {
    color: #2d6a4f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-left: 5px solid #f4a261;
    padding-left: 1rem;
}


.recipe_info_section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.info_item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.info_item i {
    font-size: 2rem;
    color: #e76f51;
    display: block;
    margin-bottom: 0.5rem;
}

.info_label {
    font-weight: bold;
    color: #2d6a4f;
    margin: 0;
    font-size: 0.9rem;
}


.about_recipe h3 {
    color: #e76f51;
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem 0;
}

.about_recipe p {
    line-height: 1.7;
    color: #3d5a3f;
    margin-bottom: 1rem;
}


.print-btn {
    background: #2d6a4f;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.print-btn:hover {
    background: #1b4d3e;
    transform: translateY(-2px);
}


.recipe-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.recipe-details .left {
    flex: 2;
    min-width: 280px;
}

.recipe-details .right {
    flex: 1;
    min-width: 250px;
}

.recipe-details h3 {
    color: #2d6a4f;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    border-left: 4px solid #f4a261;
    padding-left: 0.75rem;
}


.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.2rem;
    margin: 1rem 0;
}

.items-grid figure {
    margin: 0;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 0.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.items-grid figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.items-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.items-grid figcaption {
    font-size: 0.8rem;
    color: #3d5a3f;
    line-height: 1.4;
}


.notes-list {
    background: #fff9ef;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #f4a261;
    list-style-position: outside;
    margin: 1rem 0;
}

.notes-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #3d5a3f;
}


.main_content {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #f4a261, #ffd166, #f4a261);
    margin: 1rem 0 1.5rem 0;
}

.preperation_container h4 {
    color: #e76f51;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    padding-left: 0.5rem;
    border-left: 3px solid #f4a261;
}

.preperation_container p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #3d5a3f;
}

.preperation_container img {
    width: calc(33% - 0.5rem);
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    margin: 0.5rem 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.preperation_container img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


.additional-notes {
    background: #fef5e8;
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #ffe0b5;
}

.additional-notes h4 {
    color: #e76f51;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
}

.additional-notes p {
    margin-bottom: 0.5rem;
}



