/* Template 31 - Emerald Forest / Nature Green */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap");

:root {
  --forest-dark: #0d3d2c;
  --forest-medium: #186647;
  --emerald: #10b981;
  --emerald-light: #6ee7b7;
  --sage: #a3b18a;
  --cream-light: #fefae0;
  --brown-dark: #3a3226;
  --gold-nature: #d4a574;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  color: var(--brown-dark);
  background: var(--cream-light);
  font-weight: 400;
  overflow-x: hidden;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(13, 61, 44, 0.02) 10px, rgba(13, 61, 44, 0.02) 20px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Organic Top Bar */
.site-header {
  background: var(--forest-dark);
  border-bottom: 4px solid var(--emerald);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--emerald-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo a::before {
  content: "🌿";
  font-size: 1.5rem;
}

.site-logo a:hover {
  color: var(--gold-nature);
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--cream-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
}

.site-nav a:hover {
  background: var(--forest-medium);
  color: var(--emerald-light);
  transform: translateY(-2px);
}

/* Hero Section - Nature Centered */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--sage) 0%, var(--cream-light) 100%);
  border-bottom: 3px solid var(--emerald);
}

.section.head h1 {
  font-family: "Merriweather", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--forest-dark);
  animation: growIn 1s ease;
  text-shadow: 2px 2px 4px rgba(16, 185, 129, 0.1);
}

@keyframes growIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--forest-medium);
  max-width: 900px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--emerald);
  position: relative;
  display: inline-block;
}

.section header h2::before {
  content: "🍃";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.section header p {
  font-size: 1.15rem;
  color: var(--forest-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* Footer - Natural Earth Tones */
.footer {
  background: var(--forest-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--emerald);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--sage);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--emerald-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-nature);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.3);
}

.copyright a {
  color: var(--sage);
  font-size: 0.95rem;
}

/* Animations */
@keyframes leafFall {
  from {
    opacity: 0;
    transform: translateY(-30px) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.fade-in {
  opacity: 0;
  animation: leafFall 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.9rem;
  color: var(--forest-medium);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
}
