/* OurRecipes Landing Pages - Shared Styles */

:root {
  /* Primary - Sage */
  --sage: #6b8f71;
  --sage-light: #e6f0e8;
  --sage-dark: #4e7254;

  /* Accent - Honey */
  --honey: #c9953e;
  --honey-light: #f7ecd4;
  --honey-dark: #a87a2e;

  /* Neutral - Wheat */
  --wheat: #f5f0e6;
  --cream: #fdfbf7;

  /* Text */
  --text-dark: #2d3436;
  --text-muted: #636e72;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--cream);
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

/* Brand Button */
.btn-brand {
  background-color: var(--sage);
  border-color: var(--sage);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-brand:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  color: white;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--cream) 100%);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--honey-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
}

/* Problem Section */
.problem {
  padding: 5rem 0;
  background-color: var(--cream);
}

.problem h2 {
  margin-bottom: 2.5rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.problem-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  color: var(--honey);
  flex-shrink: 0;
  margin-top: 2px;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--wheat);
}

.how-it-works h2 {
  margin-bottom: 3rem;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 12px rgba(45, 35, 20, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-bottom: 3px solid var(--honey-light);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 35, 20, 0.08);
  border-bottom-color: var(--honey);
}

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--honey);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--sage-dark);
}

.step-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Coming Soon */
.coming-soon {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--cream);
}

.coming-soon-card {
  background: linear-gradient(135deg, var(--honey-light) 0%, white 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(201, 149, 62, 0.2);
}

.coming-soon h2 {
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

.coming-soon p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.badge-soon {
  display: inline-block;
  background-color: var(--honey);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--sage);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta .btn {
  background: #fff;
  color: var(--sage-dark);
  border: 2px solid #fff;
  padding: 0.875rem 2.5rem;
  font-weight: 600;
  border-radius: 10px;
}

.cta .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Footer */
.landing-footer {
  padding: 2rem 0;
  background-color: var(--wheat);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.landing-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--sage);
}

/* Free Badge */
.free-badge {
  display: inline-block;
  background-color: var(--honey-light);
  color: var(--honey-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* About Page */
.about-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--cream) 100%);
  text-align: center;
}

.about-hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-hero { padding: 3.5rem 0 2.5rem; }
  .about-hero h1 { font-size: 2rem; }
}

.about-section {
  padding: 4rem 0;
}

.about-section:nth-child(even) {
  background-color: var(--wheat);
}

.about-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--sage-dark);
}

.about-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.about-section.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* About CTA */
.about-cta {
  padding: 5rem 0;
  background-color: var(--sage);
  color: white;
  text-align: center;
}

.about-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.about-cta p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: white;
}

.about-cta .btn {
  background: #fff;
  color: var(--sage-dark);
  border: 2px solid #fff;
  padding: 0.875rem 2.5rem;
  font-weight: 600;
  border-radius: 10px;
}

.about-cta .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Landing Nav (shared with minimal.html) */
.landing-nav {
  padding: 1rem 0;
  background-color: var(--sage-light);
}

.landing-nav .nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
}

.landing-nav .nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 1.5rem;
}

.landing-nav .nav-links a:hover {
  color: var(--sage-dark);
}
