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

:root {
  --gradient-1: linear-gradient(135deg, #2d5016 0%, #4e7d2b 100%);
  --gradient-2: linear-gradient(135deg, #86a361 0%, #6a8e3f 100%);
  --gradient-3: linear-gradient(135deg, #3d6626 0%, #5a8f37 100%);
  --gradient-4: linear-gradient(135deg, #98b870 0%, #789c54 100%);
  --gradient-5: linear-gradient(135deg, #567339 0%, #74a34c 100%);

  --bg-primary: #f5f8f2;
  --bg-secondary: #e8f0e0;
  --glass-bg: rgba(245, 248, 242, 0.9);
  --glass-border: rgba(78, 125, 43, 0.3);

  --text-primary: #2d5016;
  --text-secondary: #4e7d2b;
  --text-muted: #6a8e3f;
}

* {
  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.75;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(78, 125, 43, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(134, 163, 97, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Forest Canopy */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--text-secondary);
  padding: 1.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

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

.site-logo a {
  font-family: "Merriweather", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s ease;
}

.site-logo a:hover {
  color: var(--text-secondary);
  letter-spacing: 1px;
}

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

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

.site-nav a:hover {
  color: var(--bg-primary);
  background: var(--text-secondary);
}

/* Hero Section - Woodland */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section.head h1 {
  font-family: "Merriweather", serif;
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  animation: leafSway 4s ease-in-out infinite;
}

@keyframes leafSway {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.9;
}

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

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

.section header h2 {
  font-family: "Merriweather", serif;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
}

/* Footer - Forest Floor */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #d4e3c8 100%);
  padding: 4rem 0 1.5rem;
  border-top: 4px solid var(--text-secondary);
  margin-top: 5rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.9;
}

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

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

.footer-links a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--glass-border);
}

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 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.85rem;
  color: var(--text-primary);
  margin-top: 22px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Merriweather", serif;
  font-weight: 700;
}
