/* HealthyBurst Microgreen - Color Palette */
/* Primary Green (Fresh Leaf): #2E7D32 */
/* Light Green (Mint Mist): #A5D6A7 */
/* Background (Soft Cream): #F9FBF6 */
/* Dark Text (Charcoal): #2B2B2B */
/* Accent (Lime Pop): #66BB6A */

:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --light-green: #A5D6A7;
  --light-green-soft: rgba(165, 214, 167, 0.4);
  --background: #F9FBF6;
  --text-dark: #2B2B2B;
  --text-muted: #5a5a5a;
  --accent: #66BB6A;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
  --shadow-hover: 0 8px 30px rgba(46, 125, 50, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

header.hero {
  background-image: url('/images/mix1_White.png'); /* Specifies the image file */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-size: cover; /* Resizes the image to cover the entire container */
  background-blend-mode: overlay;
  opacity: 1.0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 251, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-green-soft);
  padding: 0.75rem 2rem;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--background);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--light-green-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--light-green-soft) 50%, var(--background) 100%);
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .subheading {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--light-green);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Section Styles */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary);
}

.section-title p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--light-green-soft);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Content Sections */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-section.alt {
  direction: rtl;
}

.content-section.alt > * {
  direction: ltr;
}

.content-section .text h2 {
  color: var(--primary);
}

.content-section .text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-section .visual {
  background: var(--light-green-soft);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

@media (max-width: 768px) {
  .content-section,
  .content-section.alt {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Testimonial */
.testimonial {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 4rem auto;
  max-width: 800px;
}

.testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--light-green);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
  color: var(--accent);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Page Header */
.page-header {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--background) 0%, var(--light-green-soft) 100%);
}

.page-header h1 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.main-content {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.main-content h2 {
  color: var(--primary);
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-green-soft);
}

.main-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.main-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
}

.main-content p, .main-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.main-content ul {
  margin: 1rem 0 1rem 2rem;
}

/* Cards for types/benefits */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-green-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  height: 180px;
  background: var(--light-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-size: cover;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* makes image fill nicely */
  display: block;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ Accordion */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid var(--light-green-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--light-green-soft);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-green-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Coming Soon Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--light-green);
  color: var(--primary);
  border-radius: 999px;
  margin-left: 0.5rem;
}

/* About Page */
.about-hero-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--accent) 40%, var(--primary) 100%);
  background-image: url('/images/Kale.jpg');
  background-size: cover;
  border-radius: var(--radius-lg);
  /*margin-bottom: 2.5rem;*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 3.1rem;
  font-weight: 500;
  text-align: center;
  /*padding: 1.5rem;*/
  overflow: hidden;
}

.about-hero-image span {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  color: var(--primary);
  padding-bottom: 0.5rem;
}

.about-section p,
.about-section li {
  color: var(--text-muted);
}

.about-highlight {
  background: var(--light-green-soft);
  padding: 2rem;
  border-radius: var(--radius);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .about-highlight {
    margin-left: 0;
    margin-right: 0;
  }
}

.about-commitment {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.about-community {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, var(--light-green-soft) 100%);
  padding: 2rem;
  border-radius: var(--radius);
}

.types-coming-soon {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: var(--light-green-soft);
  border-radius: var(--radius);
}

.types-coming-soon h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.types-coming-soon ul {
  list-style: none;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.types-coming-soon li {
  color: var(--text-muted);
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-green-soft);
  display: grid;
  grid-template-columns: 140px 1fr;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  height: 100%;
  min-height: 140px;
  background: var(--light-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-body h2 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.blog-card-body h2 a {
  color: inherit;
}

.blog-card-body h2 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
}

/* Article page */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

.article-content .article-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.article-content h2 {
  color: var(--primary);
  margin-top: 2rem;
}

.article-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
}

.article-content p,
.article-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1rem 2rem;
}

.article-related {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--light-green-soft);
  border-radius: var(--radius);
}

.article-related h3 {
  color: var(--primary);
  margin-top: 0;
}

.article-related ul {
  list-style: none;
  margin: 0.75rem 0 0 0;
}

.article-related li {
  margin-bottom: 0.5rem;
}

.article-related a {
  font-weight: 500;
}
