/* ------------------------------------------
   GLOBAL BRAND VARIABLES (from your app)
------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --mm-dark: #27533b;
  --mm-text: #4a5d4a;
  --mm-bg: #f4f7ec;
  --mm-primary: #f03d7f;
  --mm-accent: #52a479;
}

/* ------------------------------------------
   BACKGROUND IMAGE (add your /img file)
------------------------------------------- */
body {
  background-image:
    linear-gradient(rgba(255,235,228,0.65), rgba(255,235,228,0.65)),
    url('/img/landing-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

/* Subtle overlay to improve text readability 
body::before {
  content: "";
  position: fixed;
  inset: 0;
   background: rgba(255, 214, 224, 0.28);
  backdrop-filter: blur(2px);
  z-index: -1;
}*/

/* ------------------------------------------
   STATIC SEO HEADER (matches AppHeader)
------------------------------------------- */

.seo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  background: #315843;
  border-bottom: 1px solid #52a479;
  position: sticky;
  top: 0;
  z-index: 100;
}

.seo-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.seo-logo-img {
  height: 96px;        /* same visual size as dynamic */
  width: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.seo-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.seo-logo-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f4f7ec;
}

.seo-logo-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #f4f7ec;
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.seo-nav a {
  background: transparent;
  border: none;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.2rem;
  cursor: pointer;
}

.seo-nav a:hover {
  color: #e6e6e6;
  text-decoration: underline;
}



/* ------------------------------------------
   PAGE CONTAINER
------------------------------------------- */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

/* ------------------------------------------
   HEADINGS
------------------------------------------- */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--mm-dark);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--mm-text);
  margin-bottom: 1.75rem;
}
.warm-intro {
  font-size: 1.1rem;
  color: var(--mm-text);
  margin: 1rem 0 1.5rem;
}

.intro-card {
  margin-bottom: 2rem;
}

/* ------------------------------------------
   RECIPE CARD
------------------------------------------- */
.section-box {
  background: #ffffff;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}

.recipe-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}
/* ------------------------------------------
   INGREDIENTS + STEPS
------------------------------------------- */
.section-box h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: .75rem;
}

.section-box h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

ul, ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: .5rem;
}

/* -----------------------------------------
   TOP CTA CHIP
------------------------------------------ */

.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 215, 220, 0.75); /* soft pink tint */
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--mm-dark);
  margin-bottom: 1rem;
}

.top-cta a {
  color: var(--mm-primary);
  font-weight: 600;
  text-decoration: none;
}

.top-cta a:hover {
  text-decoration: underline;
}

/* ------------------------------------------
   MID CTA
------------------------------------------- */
/* Mid-page CTA (right under warm intro) */
.mid-cta {
  margin: 1.25rem 0 2rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2c3e3b;
  background: rgba(255, 215, 220, 0.55);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(49, 88, 67, 0.15);
}

.mid-cta a.mid-cta-link {
  color: #f03d7f;
  font-weight: 600;
  margin-left: 0.35rem;
  text-decoration: none;
}

.mid-cta a.mid-cta-link:hover {
  text-decoration: underline;
}

/* ------------------------------------------
   CTA BOX
------------------------------------------- */
.cta-box {
  background: #fff5f2;
  border-left: 4px solid var(--mm-accent);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.cta-box h2 {
  margin-top: 0;
  color: var(--mm-accent);
}

.cta-box a {
  display: inline-block;
  background: var(--mm-primary);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
}

.cta-box a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* ------------------------------------------
   RELATED LINKS
------------------------------------------ */
.variation-list li {
  margin-bottom: 0.75rem;
}

.faq-list dt {
  font-weight: 600;
  margin-top: 1rem;
}

.faq-list dd {
  margin-left: 0;
  color: var(--mm-text);
  margin-bottom: 0.5rem;
}

.related-links ul {
  padding-left: 1.25rem;
}

.section-box ul li a {
  color: var(--mm-dark);
  text-decoration: none;
  font-weight: 500;
}

.section-box ul li a:hover {
  text-decoration: underline;
}

/* ------------------------------------------
   MOBILE
------------------------------------------- */
@media (max-width: 600px) {
  h1 {
    font-size: 1.75rem;
  }

  .seo-header {
    padding: .75rem 1rem;
  }

  .seo-header .logo {
    font-size: 1.4rem;
  }

  .seo-header nav a {
    margin-left: .75rem;
    font-size: .9rem;
  }

  .section-box {
    padding: 1.25rem 1.25rem;
  }
}
