/* Yummly Bowls — coral / cream / navy food-blog theme */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --rf-coral: #E07A5F;
  --rf-coral-dark: #C9634A;
  --rf-gold: #C4A35A;
  --rf-navy: #0B1F3A;
  --rf-cream: #FAF6F1;
  --rf-cream-header: #FFF8F3;
  --rf-mint: #F0F7F3;
  --rf-green: #3D8B6E;
  --rf-green-dark: #2F6B55;
  --rf-white: #FFFFFF;
  --rf-ink: #1C1C1C;
  --rf-muted: #6B7280;
  --rf-border: #E8E0D8;
  --rf-radius: 16px;
  --rf-shadow: 0 10px 30px rgba(28,28,28,.08);
  --primary: var(--rf-coral);
  --accent: var(--rf-gold);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--rf-cream);
  color: var(--rf-ink);
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--rf-coral-dark); text-decoration: none; }
a:hover { color: var(--rf-coral); }

/* ---- Header: NEVER sticky/fixed ---- */
.site-header,
.site-header .navbar,
.navbar {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
}
.site-header {
  background: var(--rf-cream-header);
  border-bottom: 2px solid rgba(224, 122, 95, 0.28);
  box-shadow: 0 1px 0 rgba(196, 163, 90, 0.18);
}
.navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--rf-coral) !important;
}
.navbar-brand img,
.site-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: 200px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 992px) {
  .navbar-brand img,
  .site-logo {
    max-height: 44px;
    max-width: 170px;
  }
}
@media (max-width: 576px) {
  .navbar-brand img,
  .site-logo {
    max-height: 40px;
    max-width: 150px;
  }
}
.site-header .navbar-brand {
  padding-top: .15rem;
  padding-bottom: .15rem;
  margin-right: .75rem;
}

.nav-link {
  font-weight: 600;
  color: var(--rf-ink) !important;
  padding: .4rem .85rem !important;
}
.nav-link:hover { color: var(--rf-coral) !important; }
.btn-rf {
  background: var(--rf-coral);
  border: none;
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  padding: .65rem 1.35rem;
}
.btn-rf:hover { background: var(--rf-coral-dark); color: #fff !important; }

.btn-jump-recipe {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--rf-coral);
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: .7rem 1.5rem;
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.35);
  margin: .25rem 0 1.5rem;
  text-decoration: none !important;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn-jump-recipe:hover {
  background: var(--rf-coral-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(224, 122, 95, 0.42);
}
.btn-jump-recipe:focus-visible {
  outline: 3px solid rgba(196, 163, 90, 0.55);
  outline-offset: 2px;
}

.hero-rf {
  background: linear-gradient(135deg, #FFF8F3 0%, #fff 50%, #F5EDE4 100%);
  border-radius: var(--rf-radius);
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid var(--rf-border);
}
.hero-rf h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .75rem;
  color: var(--rf-navy);
}
.hero-rf .lead { color: var(--rf-muted); max-width: 36rem; margin: 0 auto 1.25rem; }
.search-wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--rf-border);
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1rem;
  box-shadow: var(--rf-shadow);
}
.search-wrap input {
  border: 0;
  outline: 0;
  flex: 1;
  background: transparent;
  font-size: 1rem;
}
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin: 1.25rem 0 0;
}
.cat-pill {
  background: #fff;
  border: 1px solid var(--rf-border);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--rf-ink);
}
.cat-pill:hover { border-color: var(--rf-coral); color: var(--rf-coral); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  margin: 0 0 1.25rem;
  color: var(--rf-navy);
}

.card-recipe {
  background: var(--rf-white);
  border: 0;
  border-radius: var(--rf-radius);
  box-shadow: var(--rf-shadow);
  overflow: hidden;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-recipe:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,28,28,.12);
}
.card-recipe img,
.card-recipe .placeholder-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
}
.placeholder-img {
  background: linear-gradient(135deg, #FFF0EA, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rf-muted);
  font-weight: 700;
}
.card-recipe .card-body { padding: 1.1rem 1.15rem 1.35rem; }
.card-recipe h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 .35rem;
  line-height: 1.35;
}
.card-recipe h2 a { color: var(--rf-ink); }
.card-recipe h2 a:hover { color: var(--rf-coral); }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  color: var(--rf-muted);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.badge-rf {
  background: #FFF0EA;
  color: var(--rf-coral-dark);
  border-radius: 999px;
  padding: .2rem .6rem;
  font-size: .75rem;
  font-weight: 700;
}

.adsense-slot {
  min-height: 90px;
  background: rgba(0,0,0,.03);
  border: 1px dashed var(--rf-border);
  border-radius: 12px;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rf-muted);
  font-size: .85rem;
}

.site-footer {
  background: var(--rf-cream-header);
  border-top: 1px solid var(--rf-border);
  margin-top: 3rem;
}
.recipe-hero-img {
  border-radius: var(--rf-radius);
  box-shadow: var(--rf-shadow);
}
.content h2, .content h3 { font-family: 'Playfair Display', Georgia, serif; }

@media (max-width: 782px) {
  .hero-rf { padding: 1.75rem 1rem; }
  .search-wrap { flex-direction: column; border-radius: 16px; padding: .75rem; }
  .search-wrap .btn-rf { width: 100%; }
}


/* Author byline (post + cards) */
.author-byline {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #FFF0EA;
  border: 1px solid rgba(224, 122, 95, 0.22);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  margin: 0 0 1.25rem;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.08);
}
.author-byline img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(224, 122, 95, 0.18);
}
.author-byline .author-meta {
  min-width: 0;
}
.author-byline .author-name {
  font-weight: 800;
  color: var(--rf-coral-dark);
  line-height: 1.3;
  margin: 0;
}
.author-byline .author-bio {
  margin: .15rem 0 0;
  font-size: .9rem;
  color: var(--rf-muted);
  line-height: 1.45;
}
.card-author-row {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: .65rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--rf-coral-dark);
}
.card-author-row img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: auto;
}


.breadcrumb-rf a { font-weight: 700; color: var(--rf-coral-dark); }
.breadcrumb-rf a:hover { color: var(--rf-coral); }


/* ========== WPRM / RecipeTin-style Recipe Card ========== */
.recipe-card.wprm-style {
  --wprm-navy: #0B1F3A;
  --wprm-coral: #E07A5F;
  --wprm-star: #C4A35A;
  --wprm-body-bg: #F7F7F5;
  --wprm-border: #E2E2DE;
  background: var(--wprm-body-bg);
  border: 1px solid var(--wprm-border);
  border-radius: 6px;
  box-shadow: 0 10px 32px rgba(11, 31, 58, 0.12);
  margin: 3rem 0 2.75rem;
  overflow: visible;
  position: relative;
  padding: 0;
  font-family: Georgia, 'Times New Roman', 'Playfair Display', serif;
  color: #222;
  width: 100%;
  max-width: 100%;
  scroll-margin-top: 1rem;
}
.recipe-card.wprm-style::before { display: none; }

.wprm-header {
  background: var(--wprm-navy);
  color: #fff;
  text-align: center;
  padding: 4.5rem 1.25rem 1.35rem;
  border-radius: 6px 6px 0 0;
  position: relative;
}
.wprm-featured-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -42%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  background: #ddd;
  z-index: 2;
}
.wprm-featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wprm-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.wprm-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 1.15rem;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  margin-bottom: .85rem;
}
.wprm-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.wprm-meta-muted { opacity: .75; font-weight: 400; }
.wprm-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .95;
}

.wprm-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  margin-bottom: .9rem;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
}
.wprm-star {
  color: rgba(255,255,255,.35);
  font-size: 1.05rem;
  line-height: 1;
}
.wprm-star.is-on { color: var(--wprm-star); }
.wprm-rating-text {
  margin-left: .45rem;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}

.wprm-servings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding-top: .35rem;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: .25rem;
}
.wprm-servings-label {
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.wprm-servings-control {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .2rem .35rem;
}
.wprm-servings-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wprm-servings-btn:hover { background: rgba(255,255,255,.15); }
.wprm-servings-value {
  min-width: 2rem;
  text-align: center;
  font-weight: 700;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: 1.05rem;
}
.wprm-servings-hint {
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
}

.wprm-body {
  padding: 1.15rem 1.35rem 1.5rem;
  background: var(--wprm-body-bg);
  border-radius: 0 0 6px 6px;
}
.wprm-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.wprm-print-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid #D0D0CC;
  background: #EFEFED;
  color: #333;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 999px;
  padding: .45rem 1rem;
  cursor: pointer;
}
.wprm-print-btn:hover { background: #e4e4e0; }
.wprm-print-btn .wprm-icon { width: 16px; height: 16px; }
.wprm-share {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.wprm-share svg { width: 16px; height: 16px; }
.wprm-share-fb { background: #3b5998; }
.wprm-share-pin { background: #bd081c; }
.wprm-share-email { background: #555; }
.wprm-share:hover { opacity: .9; color: #fff; }

.wprm-excerpt {
  font-style: italic;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 1.35rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.wprm-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--wprm-coral);
  margin: 0 0 .9rem;
  border: 0;
  padding: 0;
}
.wprm-section { margin-bottom: 1.5rem; }

.wprm-ingredient-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wprm-group-header {
  list-style: none;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #444;
  margin: 1rem 0 .45rem;
  padding: 0;
}
.wprm-group-header:first-child { margin-top: 0; }
.wprm-ingredient {
  margin: 0;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 1rem;
  line-height: 1.45;
}
.wprm-ingredient:last-child { border-bottom: 0; }
.wprm-check-label {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}
.wprm-check {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: .28rem;
  flex-shrink: 0;
  border: 1.5px solid #888;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.wprm-check:checked {
  background: var(--wprm-navy);
  border-color: var(--wprm-navy);
}
.wprm-check:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.wprm-ingredient.is-checked .wprm-ing-text {
  text-decoration: line-through;
  opacity: .55;
}

.wprm-cook-mode {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--wprm-border);
}
.wprm-toggle {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: .9rem;
  color: #333;
}
.wprm-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.wprm-toggle-ui {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #ccc;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}
.wprm-toggle-ui::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.wprm-toggle input:checked + .wprm-toggle-ui { background: var(--wprm-navy); }
.wprm-toggle input:checked + .wprm-toggle-ui::after { transform: translateX(18px); }
.wprm-toggle-text strong { font-weight: 700; margin-right: .25rem; }

.wprm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.wprm-step {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.wprm-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wprm-navy);
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.wprm-step-text {
  flex: 1;
  font-size: 1.02rem;
  line-height: 1.5;
  padding-top: .15rem;
}

.wprm-notes-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: .95rem;
  line-height: 1.55;
  color: #333;
}
.wprm-notes-list li { margin-bottom: .55rem; }

/* Classic Nutrition Facts panel */
.wprm-nutrition-facts {
  border: 2px solid #000;
  padding: .65rem .75rem .85rem;
  max-width: 320px;
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
  color: #000;
  margin: 1.25rem 0 1rem;
}
.nf-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .25rem;
  letter-spacing: -0.02em;
}
.nf-serving {
  font-size: .82rem;
  padding-bottom: .35rem;
}
.nf-thick {
  border-top: 8px solid #000;
  margin: .2rem 0;
}
.nf-line-thick {
  border-top: 4px solid #000;
  margin: .15rem 0;
}
.nf-calories {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.15rem;
  font-weight: 800;
  padding: .2rem 0;
}
.nf-cal-val { font-size: 1.45rem; }
.nf-dv {
  font-size: .72rem;
  font-weight: 700;
  text-align: right;
  border-bottom: 1px solid #000;
  padding-bottom: .15rem;
}
.nf-row {
  display: flex;
  justify-content: space-between;
  font-size: .86rem;
  border-top: 1px solid #000;
  padding: .2rem 0;
}
.nf-indent { padding-left: 1rem; }
.nf-indent span { font-weight: 400; }
.nf-footnote {
  font-size: .65rem;
  margin: .45rem 0 0;
  line-height: 1.35;
  color: #222;
}
.wprm-card-footer-dates {
  font-family: system-ui, -apple-system, 'Segoe UI', Nunito, sans-serif;
  font-size: .75rem;
  color: #888;
  margin: .75rem 0 0;
}

@media (max-width: 768px) {
  .wprm-header { padding: 4.1rem 1rem 1.15rem; }
  .wprm-featured-wrap { width: 120px; height: 120px; transform: translate(-50%, -40%); }
  .wprm-body { padding: 1rem 1rem 1.25rem; }
  .wprm-meta { gap: .4rem .85rem; font-size: .78rem; }
  .wprm-nutrition-facts { max-width: 100%; }
  .wprm-title { font-size: 1.5rem; }
  .recipe-card.wprm-style {
    margin: 2.5rem 0 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .btn-jump-recipe { width: 100%; justify-content: center; }
}

@media print {
  body { background: #fff !important; color: #000; font-size: 12pt; }
  .site-header,
  .site-footer,
  .adsense-slot,
  .author-byline,
  .breadcrumb-rf,
  .cat-pills,
  .no-print,
  .btn-jump-recipe,
  .recipe-card-toolbar,
  .wprm-actions,
  .wprm-cook-mode,
  .wprm-servings {
    display: none !important;
  }
  .recipe-hero-img { max-height: 220px; object-fit: cover; box-shadow: none; }
  .content { margin-bottom: 1rem !important; }
  .recipe-card.wprm-style {
    box-shadow: none !important;
    border: 1px solid #ccc;
    break-inside: avoid;
    page-break-inside: avoid;
    margin: 0;
    background: #fff;
  }
  .wprm-header {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding-top: 1.25rem;
  }
  .wprm-featured-wrap {
    position: static;
    transform: none;
    margin: 0 auto .75rem;
    width: 100px;
    height: 100px;
  }
  .wprm-step-num,
  .wprm-star.is-on {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .wprm-nutrition-facts {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  a[href]::after { content: ''; }
  main, .container, .col-lg-8 { max-width: 100% !important; width: 100% !important; }
}
