/* ===== Enhanced Recipe Page Styles ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
    background-image: linear-gradient(to bottom, #f5f7fa 0%, #e4e8eb 100%);
}

.recipe-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.recipe-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.recipe-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 4px;
    background: linear-gradient(90deg, #3c9ae7, #12a1f3);
    border-radius: 2px;
}

.back-link {
    position: fixed;
    left: 20px;
    top: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    z-index: 100;
    background: #b5bec4;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.recipe-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    margin: 15px;
    transition: transform 0.3s ease;
}

.recipe-image:hover {
    transform: scale(1.03);
}

.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 30px 0;
}

.recipe-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recipe-section h2 {
    color: #3c9ae7;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.8rem;
}

.recipe-section p {
    margin: 15px 0;
    padding-left: 15px;
    position: relative;
    font-size: 1.1rem;
}

.recipe-section p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}
