/* =====================================================================
   FOODIE FRIDAY FRIENDS — Kentucky Thoroughbroads
   Females foraging thru fabulous food, friendly conversation
   and a fresh look on life
   Colors from the original WordPress site:
     Rose pink #B84672 (links, accents)
     Light pink #d58aa8 (secondary accents)
     Teal #1c7c7c (headers, decorative)
     Warm cream #faf6f2 (backgrounds)
     Warm gray #645861 (text accents)
   Fonts: Playfair Display (serif headings) + Lora (body) + Dancing Script (signature)
   ===================================================================== */

:root {
  /* Brand palette — from the WordPress site */
  --rose: #B84672;
  --rose-dark: #9a3560;
  --rose-deep: #7a2848;
  --rose-light: #d58aa8;
  --rose-soft: #f5e4ec;
  --rose-pale: #faf0f4;

  --teal: #1c7c7c;
  --teal-dark: #155e5e;
  --teal-light: #2a9d9d;
  --teal-soft: #e0f0f0;

  --warm-gray: #645861;
  --warm-gray-dark: #4a4239;
  --warm-gray-light: #8a7e88;

  --cream: #faf6f2;
  --cream-2: #f3ece4;
  --paper: #fffdf9;
  --linen: #f0e8de;

  --ink: #313131;
  --text: #404040;
  --text-light: #6b6b6b;
  --text-muted: #999;

  --line: #e8e0d6;
  --line-strong: #d6cec1;

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Dancing Script", "Brush Script MT", cursive;
  --font-body: "Lora", Georgia, "Times New Roman", serif;

  --max-width: 1200px;
  --max-width-narrow: 760px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(100, 88, 97, .08);
  --shadow: 0 8px 28px rgba(100, 88, 97, .12);
  --shadow-lg: 0 18px 50px rgba(100, 88, 97, .18);
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  border-top: 5px solid var(--rose);
}
img { max-width: 100%; display: block; height: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track { background: var(--cream-2); border-left: 1px solid var(--line); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 7px; border: 3px solid var(--cream-2); }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }
::-webkit-scrollbar-corner { background: var(--cream-2); }
html { scrollbar-color: var(--rose-light) var(--cream-2); scrollbar-width: auto; }

/* Links */
a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-deep); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-dark { background: var(--warm-gray-dark); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-rose { background: var(--rose); color: #fff; }
.bg-rose h1, .bg-rose h2, .bg-rose h3 { color: #fff; }
.bg-soft { background: var(--rose-soft); }
.bg-teal-soft { background: var(--teal-soft); }
.text-center { text-align: center; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-style: italic;
  font-size: .9rem; letter-spacing: .05em;
  color: var(--rose); margin-bottom: 18px;
}
.eyebrow::before, .eyebrow.center::after {
  content: ''; width: 32px; height: 1.5px; background: var(--rose-light);
}
.eyebrow.center { justify-content: center; }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-script); font-size: 1.5rem; font-weight: 700;
  flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.brand-text .tag { font-size: .75rem; color: var(--warm-gray); font-style: italic; }

.navbar-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-links a {
  display: block; padding: 8px 14px;
  font-size: .9rem; font-weight: 600; color: var(--text);
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.navbar-links a:hover { color: var(--rose); background: var(--rose-soft); }
.navbar-links a.active { color: var(--rose); }

.nav-toggle { display: none; font-size: 1.6rem; color: var(--warm-gray); background: none; border: none; cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .navbar-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--paper); flex-direction: column;
    padding: 16px 24px 24px; gap: 2px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .3s ease;
    z-index: 999;
  }
  .navbar-links.open { transform: translateY(0); }
  .navbar-links a { padding: 12px 14px; font-size: 1rem; width: 100%; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--cream);
  padding: 0 0 72px;
}
.hero-header-img {
  width: 100%; height: 280px; object-fit: cover;
  border-bottom: 4px solid var(--rose);
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 64px 24px 0;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-style: italic; color: var(--ink);
  margin-bottom: 16px;
}
.hero .tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--rose);
  max-width: 640px; margin: 0 auto 28px;
}
.hero .lead {
  font-size: 1.1rem; color: var(--text-light);
  max-width: 580px; margin: 0 auto 36px;
}

/* Decorative separator */
.separator {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 32px 0;
}
.separator::before, .separator::after {
  content: ''; height: 1.5px; width: 80px;
  background: linear-gradient(to right, transparent, var(--rose-light));
}
.separator::after { background: linear-gradient(to left, transparent, var(--rose-light)); }
.separator-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rose);
  flex-shrink: 0;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all var(--transition);
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--rose); color: var(--rose); background: transparent; }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }

/* =====================================================================
   BLOG POST CARDS
   ===================================================================== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.post-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--rose-light); }
.post-card-img {
  width: 100%; height: 200px; object-fit: cover;
  border-bottom: 3px solid var(--rose-light);
}
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
  font-size: .8rem; color: var(--warm-gray-light);
  margin-bottom: 10px; font-style: italic;
}
.post-card-meta .author { color: var(--rose); font-weight: 600; }
.post-card h3 {
  font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3;
}
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--rose); }
.post-card-excerpt {
  color: var(--text-light); font-size: .95rem; line-height: 1.7;
  flex: 1; margin-bottom: 16px;
}
.post-card .read-more {
  font-size: .85rem; font-weight: 700; color: var(--rose);
  text-transform: uppercase; letter-spacing: .08em;
}
.post-card .read-more:hover { color: var(--rose-deep); }

/* =====================================================================
   FULL POST PAGE
   ===================================================================== */
.post-hero {
  background: var(--paper);
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.post-hero .container-narrow { max-width: 820px; }
.post-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 16px; font-style: italic;
}
.post-meta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; font-size: .9rem; color: var(--warm-gray);
  margin-bottom: 8px;
}
.post-meta .author { color: var(--rose); font-weight: 600; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

.post-body {
  padding: 48px 0 72px;
  background: var(--cream);
}
.post-body .container-narrow { max-width: 760px; }
.post-body p {
  font-size: 1.08rem; line-height: 1.9; color: var(--text);
  margin-bottom: 1.4em;
}
.post-body img {
  border-radius: var(--radius); margin: 24px auto;
  box-shadow: var(--shadow-sm); max-width: 100%;
}
.post-body .post-image-full {
  width: 100%; max-height: 400px; object-fit: cover;
  border-radius: var(--radius-lg); margin: 32px 0;
  border-bottom: 4px solid var(--rose-light);
}
.post-body strong { color: var(--ink); }
.post-afternote {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--rose);
  text-align: center;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Recipe card */
.recipe-card {
  background: var(--rose-pale);
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 36px 0;
}
.recipe-card h3 {
  font-family: var(--font-script); font-size: 2rem;
  color: var(--rose); margin-bottom: 8px; font-weight: 700;
}
.recipe-card .recipe-serves {
  font-size: .9rem; color: var(--warm-gray); font-style: italic;
  margin-bottom: 20px;
}
.recipe-card .recipe-ingredients {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.recipe-card .recipe-ingredients li {
  padding: 6px 0; border-bottom: 1px dotted var(--rose-light);
  font-size: 1rem; color: var(--text);
}
.recipe-card .recipe-ingredients li:last-child { border-bottom: none; }
.recipe-card .recipe-directions {
  font-size: 1rem; line-height: 1.85; color: var(--text);
}
.recipe-card .recipe-label {
  font-family: var(--font-serif); font-weight: 700;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--rose-dark); margin-bottom: 10px; display: block;
}

/* Post navigation */
.post-nav {
  display: flex; justify-content: space-between; gap: 24px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.post-nav a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 24px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  transition: all var(--transition); max-width: 48%;
}
.post-nav a:hover { border-color: var(--rose-light); box-shadow: var(--shadow-sm); }
.post-nav .nav-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--warm-gray-light); }
.post-nav .nav-title { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: 1rem; }
.post-nav .nav-next { text-align: right; margin-left: auto; }

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.about-hero { padding: 72px 0 48px; background: var(--rose-soft); text-align: center; }
.about-hero h1 { font-style: italic; margin-bottom: 16px; }
.about-hero .lead { font-size: 1.15rem; color: var(--warm-gray); max-width: 600px; margin: 0 auto; font-style: italic; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-portrait {
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 6px solid var(--paper); width: 100%; max-width: 400px;
}
.about-text p { font-size: 1.08rem; line-height: 1.9; margin-bottom: 1.2em; }

.person-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  text-align: center;
}
.person-card h3 { color: var(--rose); font-style: italic; margin-bottom: 8px; }
.person-card .role { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 16px; font-weight: 600; }
.person-card p { font-size: .98rem; color: var(--text-light); text-align: left; }

/* =====================================================================
   RECIPE GRID
   ===================================================================== */
.recipe-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.recipe-tile {
  background: var(--paper); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  text-decoration: none; display: block;
}
.recipe-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--rose-light); }
.recipe-tile-body { padding: 20px; }
.recipe-tile h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }
.recipe-tile .recipe-origin { font-size: .82rem; color: var(--warm-gray); font-style: italic; }

/* =====================================================================
   ARCHIVE LIST
   ===================================================================== */
.archive-list { list-style: none; padding: 0; }
.archive-item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.archive-item:last-child { border-bottom: none; }
.archive-date {
  font-size: .82rem; color: var(--warm-gray); font-style: italic;
  min-width: 120px; flex-shrink: 0;
}
.archive-title a { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.archive-title a:hover { color: var(--rose); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--warm-gray-dark); color: var(--cream);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--cream);
  margin-bottom: 16px;
}
.footer p, .footer a { color: var(--cream-2); font-size: .9rem; line-height: 1.7; }
.footer a:hover { color: var(--rose-light); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: 1.2rem; }
.footer-brand .name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
  text-align: center; font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }

/* =====================================================================
   SECTION HEADERS
   ===================================================================== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-style: italic; margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* =====================================================================
   UTILITY
   ===================================================================== */
.back-home-bar { text-align: center; padding: 36px 20px 48px; background: var(--paper); border-top: 1px solid var(--line); }
.back-home-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--warm-gray); color: #fff;
  font-weight: 600; font-size: .95rem; border-radius: var(--radius);
  text-decoration: none; transition: all var(--transition);
}
.back-home-btn:hover { background: var(--warm-gray-dark); color: #fff; transform: translateY(-2px); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .6s ease both; }

/* Pull quote */
.pullquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.4rem; color: var(--rose);
  border-left: 4px solid var(--rose-light);
  padding: 16px 24px; margin: 32px 0;
  line-height: 1.5;
}
.pullquote p { margin-bottom: 12px; }
.pullquote p:first-child { font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--warm-gray); font-style: normal; }
.pullquote cite { display: block; font-size: .9rem; color: var(--warm-gray); font-weight: 600; font-style: normal; margin-top: 8px; }

/* Testimonial */
.testimonial {
  background: var(--teal-soft); border-radius: var(--radius-lg);
  padding: 32px; margin: 32px 0;
  border-left: 4px solid var(--teal);
}
.testimonial p { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--teal-dark); margin-bottom: 12px; }
.testimonial cite { font-size: .9rem; color: var(--warm-gray); font-weight: 600; font-style: normal; }
