/* ===== FORM ===== */
.gf-recipe-form {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gf-recipe-form h2 {
    margin-bottom: 6px;
}

.gf-recipe-form .subtitle {
    color: #666;
    margin-bottom: 18px;
}

.gf-recipe-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.gf-recipe-form select,
.gf-recipe-form button {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
}

.gf-recipe-form button {
    background: #2e7d32;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* ===== RECIPE CARD ===== */
.gf-recipe-card {
    max-width: 800px;
    margin: 60px auto 30px;
    padding: 40px;
    background: #fffaf0;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    font-family: Georgia, serif;
    line-height: 1.7;
}

/* Header */
.recipe-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

/* Print button */
.gf-print-btn {
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: background 0.2s ease, transform 0.1s ease;
}

.gf-print-btn:hover {
    background-color: #256428;
    transform: translateY(-1px);
}

/* Try new recipe button */
.try-new-recipe {
    text-align: center;
    margin: 40px 0 60px;
}

/* Try new recipe button – secondary CTA */
.try-new-btn {
    background: #e8f5e9;           /* light green */
    color: #2e7d32;                /* main green */
    border: 2px solid #2e7d32;
    padding: 18px 34px;            /* bigger */
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;

    transition: all 0.2s ease;
}

.try-new-btn:hover {
    background: #2e7d32;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Print */
@media print {
    .gf-print-btn,
    .try-new-recipe {
        display: none;
    }
}

/* ===== RECIPE TYPOGRAPHY FIX ===== */

/* Base text */
.gf-recipe-card {
    font-size: 16px;
    line-height: 1.65;
}

/* Title */
.gf-recipe-card h1 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 16px;
}

/* Section headings */
.gf-recipe-card h2 {
    font-size: 22px;
    margin: 32px 0 12px;
}

.gf-recipe-card h3 {
    font-size: 18px;
    margin: 24px 0 10px;
}

/* Paragraphs */
.gf-recipe-card p {
    font-size: 16px;
    margin: 0 0 14px;
}

/* Lists */
.gf-recipe-card ul,
.gf-recipe-card ol {
    font-size: 16px;
    margin: 0 0 18px 22px;
}

.gf-recipe-card li {
    margin-bottom: 8px;
}