/* Template 23 - Forest/Woodland 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, #5a8f3a 0%, #7cb342 100%);
  --gradient-3: linear-gradient(135deg, #3e5c2f 0%, #6b8e4e 100%);
  --gradient-4: linear-gradient(135deg, #8b6f47 0%, #a0826d 100%);
  --gradient-5: linear-gradient(135deg, #4a7c2c 0%, #689f38 100%);

  --bg-primary: #1a2410;
  --bg-secondary: #2d3e1f;
  --glass-bg: rgba(42, 61, 28, 0.8);
  --glass-border: rgba(107, 142, 78, 0.3);

  --text-primary: #e8f5e9;
  --text-secondary: #c5e1a5;
  --text-muted: #9ccc65;
}

* {
  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: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(74, 124, 44, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107, 142, 78, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 111, 71, 0.1) 0%, transparent 50%);
  animation: gradientShift 25s ease infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(3%, 3%) rotate(120deg);
  }
  66% {
    transform: translate(-3%, 3%) rotate(240deg);
  }
}

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

.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--glass-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.site-logo a {
  font-family: "Lora", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(107, 142, 78, 0.5);
  letter-spacing: 1px;
}

.site-logo a:hover {
  color: var(--text-secondary);
  transform: scale(1.05);
  text-shadow: 0 4px 12px rgba(107, 142, 78, 0.7);
}

.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.5rem 1rem;
  border-radius: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.site-nav a:hover::after {
  width: 80%;
}

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

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: textGlow 4s ease-in-out infinite alternate;
  text-shadow: 0 4px 16px rgba(107, 142, 78, 0.6);
  letter-spacing: 2px;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 4px 16px rgba(107, 142, 78, 0.6);
  }
  100% {
    text-shadow: 0 6px 24px rgba(107, 142, 78, 0.9);
  }
}

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

.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;
  color: var(--text-primary);
  text-shadow: 0 2px 12px rgba(107, 142, 78, 0.5);
}

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

.footer {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--glass-border);
  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(--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;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

.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;
}

@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: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Lora", serif;
}
