/* Template 63 - Sage Garden */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Mulish:wght@300;400;600;700&display=swap");

:root {
  --bg-primary: #f9faf8;
  --bg-secondary: #e8ede7;
  --accent-sage: #6b8e75;
  --accent-dark-sage: #4a6352;
  --accent-cream: #f4ece2;
  --text-primary: #2c3e2f;
  --text-secondary: #5a6b5d;
  --text-muted: #8a9b8d;
  --border-color: rgba(107, 142, 117, 0.2);
}

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

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

body {
  font-family: "Mulish", 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-image: radial-gradient(circle at 15% 25%, rgba(107, 142, 117, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(74, 99, 82, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Natural Organic */
.site-header {
  background: var(--bg-primary);
  border-bottom: 3px solid var(--accent-sage);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(107, 142, 117, 0.1);
}

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

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

.site-logo a:hover {
  color: var(--accent-dark-sage);
  transform: translateX(5px);
}

.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;
  position: relative;
  padding-bottom: 3px;
}

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

.site-nav a:hover {
  color: var(--accent-sage);
}

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

/* Hero Section */
.section.head {
  padding: 9rem 0 7rem;
  text-align: center;
  background: linear-gradient(180deg, var(--accent-cream) 0%, var(--bg-primary) 100%);
}

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-sage);
  line-height: 1.2;
  animation: leafGrow 2s ease-in-out infinite alternate;
}

@keyframes leafGrow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

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

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

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

.section header h2 {
  font-family: "Lora", serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-sage);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--accent-sage);
  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.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;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-sage);
  transform: translateY(-2px);
}

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

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

/* Animations */
@keyframes gardenFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: gardenFadeIn 0.9s 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.75rem;
  color: var(--accent-sage);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Lora", serif;
  font-weight: 600;
}
