/* Recipes Page */
.recipes-page {
    background: #f9fafb;
}

.recipes-hero {
    position: relative;
    padding: 160px 1rem 120px;
    background: radial-gradient(circle at 20% 20%, rgba(255,215,0,0.15), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(230,126,34,0.18), transparent 38%),
                linear-gradient(120deg, #2c3e50 0%, #1f2c3a 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.adamchini-hero {
    background-image: url('../images/adamchini.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.recipes-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,215,0,0.15), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(230,126,34,0.18), transparent 38%),
                linear-gradient(120deg, rgba(44,62,80,0.85) 0%, rgba(31,44,58,0.9) 100%);
    z-index: 0;
}

.adamchini-hero::before {
    background: radial-gradient(circle at 20% 20%, rgba(255,215,0,0.15), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(230,126,34,0.18), transparent 38%),
                linear-gradient(120deg, rgba(44,62,80,0.85) 0%, rgba(31,44,58,0.9) 100%);
}

.recipes-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
    pointer-events: none;
    z-index: 0;
}

.recipes-hero__content {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.recipes-hero h1 {
    margin: 20px 0 14px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.recipes-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin: 0 auto 24px;
    max-width: 680px;
}

.hero-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-btn {
    background: #ffd700;
    color: #2c3e50;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ghost-btn {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
}

.ghost-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.recipe-grid-section {
    max-width: 1200px;
    margin: -60px auto 60px;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-header .eyebrow {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(44,62,80,0.06);
    border-radius: 999px;
    font-weight: 600;
    color: #2c3e50;
}

.section-header h2 {
    padding-top: 20px;
    margin: 12px 0 8px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.section-header p {
    color: #56616d;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.recipe-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(44,62,80,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recipe-tag {
    align-self: flex-start;
    padding: 6px 12px;
    background: rgba(230, 126, 34, 0.12);
    color: #d35400;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.recipe-card h3 {
    margin: 0;
    color: #2c3e50;
}

.recipe-desc {
    margin: 0;
    color: #56616d;
}

.prep-info {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.prep-info li {
    background: rgba(44,62,80,0.05);
    border-radius: 12px;
    padding: 6px 10px;
    font-weight: 600;
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.recipe-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.recipe-details h4 {
    margin-bottom: 6px;
    color: #2c3e50;
}

.ingredient-list,
.steps-list {
    margin: 0;
    padding-left: 18px;
    color: #55606d;
    line-height: 1.55;
}

.kitchen-tips {
    max-width: 1200px;
    margin: 24px auto 80px;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.tips-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
    border: 1px solid rgba(44,62,80,0.06);
}

.tips-card.secondary {
    background: linear-gradient(135deg, #ffd700 0%, #f4c430 100%);
    color: #2c3e50;
}

.tips-card h3 {
    margin-top: 0;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: inherit;
    line-height: 1.6;
}

.tips-card p {
    margin: 8px 0 14px;
    color: inherit;
}

.cta-btn.compact {
    padding: 10px 14px;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Improve contrast for the CTA inside yellow tip card */
.tips-card.secondary .cta-btn {
    background: #f1eeee;
    color: #000000;
}

/* Cooking method icons styling */
.recipe-card h3 i {
    vertical-align: middle;
}

.recipe-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 900px) {
    .recipes-hero {
        padding: 140px 1rem 100px;
        text-align: left;
    }

    .recipes-hero__content {
        text-align: left;
    }

    .kitchen-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .recipe-details {
        grid-template-columns: 1fr;
    }

    .recipe-grid-section {
        margin-top: -30px;
    }
}

