/* Template 40 - Soft Sage / Natural Wellness */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@300;400;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #a8c69f 0%, #8ab990 100%);
  --gradient-2: linear-gradient(135deg, #b8d5ac 0%, #9cc3a8 100%);
  --gradient-3: linear-gradient(135deg, #c1d9b4 0%, #a7c7aa 100%);
  --gradient-4: linear-gradient(135deg, #9ab89c 0%, #7fa383 100%);
  --gradient-5: linear-gradient(135deg, #b0cca4 0%, #95b898 100%);

  --bg-primary: #f9faf8;
  --bg-secondary: #f0f4ee;
  --glass-bg: rgba(168, 198, 159, 0.1);
  --glass-border: rgba(127, 163, 131, 0.2);

  --text-primary: #2d3e2f;
  --text-secondary: #5a7c5e;
  --text-muted: #8a9b8c;
}

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

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

body {
  font-family: "Source Sans 3", sans-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(circle at 20% 30%, rgba(168, 198, 159, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 185, 144, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: gentleBreeze 15s ease-in-out infinite;
}

@keyframes gentleBreeze {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}

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

/* Header with Natural Style */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid #c1d9b4;
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(90, 124, 94, 0.1);
}

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

.site-logo a {
  font-family: "Libre Baskerville", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s ease;
}

.site-logo a:hover {
  color: #7fa383;
  transform: translateY(-2px);
}

.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: 0.5rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.site-nav a:hover {
  color: #7fa383;
}

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

.section.head h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text-secondary);
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.section header h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid #c1d9b4;
  padding: 3rem 0 1rem;
  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.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: #7fa383;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(127, 163, 131, 0.2);
}

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

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

.fade-in {
  opacity: 0;
  animation: floatIn 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.7rem;
  color: var(--text-secondary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}
