/* Template 16 - Forest/Natural Theme */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Lora:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
  --gradient-2: linear-gradient(135deg, #3d6b1f 0%, #5a8c3c 100%);
  --gradient-3: linear-gradient(135deg, #4d7c2f 0%, #6a9c4c 100%);
  --gradient-4: linear-gradient(135deg, #5d8c3f 0%, #7aac5c 100%);
  --gradient-5: linear-gradient(135deg, #6d9c4f 0%, #8abc6c 100%);

  --bg-primary: #1a2410;
  --bg-secondary: #2a3420;
  --glass-bg: rgba(74, 124, 44, 0.08);
  --glass-border: rgba(106, 156, 76, 0.2);

  --text-primary: #e8f5e0;
  --text-secondary: #c8d5c0;
  --text-muted: #a8b5a0;
}

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

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

body {
  font-family: "Merriweather", serif;
  line-height: 1.8;
  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(ellipse at 25% 35%, rgba(74, 124, 44, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 65%, rgba(106, 156, 76, 0.12) 0%, transparent 45%);
  animation: forestBreeze 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes forestBreeze {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(15px) translateY(-10px);
  }
}

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

/* Header with Organic Feel */
.site-header {
  background: linear-gradient(180deg, rgba(42, 52, 32, 0.95) 0%, rgba(26, 36, 16, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--glass-border);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.site-logo a {
  font-family: "Lora", serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.site-logo a:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
}

.site-nav a::before {
  content: "🌿";
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
  padding-left: 1.8rem;
}

.site-nav a:hover::before {
  opacity: 1;
  left: 10px;
}

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

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: leafSway 4s ease-in-out infinite;
}

@keyframes leafSway {
  0%,
  100% {
    transform: rotate(0deg);
    filter: brightness(1);
  }
  25% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(1deg);
    filter: brightness(1.15);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.section header h2 {
  font-family: "Lora", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(26, 36, 16, 0.9) 0%, rgba(42, 52, 32, 0.95) 100%);
  backdrop-filter: blur(12px);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--glass-border);
  margin-top: 5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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(--text-secondary);
  line-height: 1.8;
}

.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;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(106, 156, 76, 0.5);
}

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

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  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.7rem;
  color: #e8f5e0;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
