/* Template 65 - Forest Moss Natural */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #2d5016 0%, #1f3a0f 100%);
  --gradient-2: linear-gradient(135deg, #4a7c2c 0%, #3a6322 100%);
  --gradient-3: linear-gradient(135deg, #6b9d45 0%, #567d38 100%);
  --gradient-4: linear-gradient(135deg, #8fbc5a 0%, #729d48 100%);
  --gradient-5: linear-gradient(135deg, #a6c57a 0%, #8aab62 100%);

  --bg-primary: #f7f9f5;
  --bg-secondary: #e8f0dd;
  --glass-bg: rgba(74, 124, 44, 0.08);
  --glass-border: rgba(74, 124, 44, 0.2);

  --text-primary: #1f3a0f;
  --text-secondary: #3a6322;
  --text-muted: #567d38;
}

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

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

body {
  font-family: "Nunito", 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 25% 35%, rgba(107, 157, 69, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(143, 188, 90, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 3px solid #4a7c2c;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(31, 58, 15, 0.1);
}

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

.site-logo a {
  font-family: "Lora", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  font-style: italic;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: #4a7c2c;
  transform: scale(1.05);
}

.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: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
  transform: translateY(-2px);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.15;
  font-style: italic;
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 950px;
  line-height: 1.85;
}

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

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

.section header h2 {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-style: italic;
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid #4a7c2c;
  margin-top: 6rem;
}

.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;
  font-size: 1.05rem;
}

.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: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4a7c2c;
  transform: translateY(-2px);
}

.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(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.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: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  font-style: italic;
}
