/* Template 6 - Vibrant Green Nature with Rounded Corners */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap");

:root {
  --nature-green: #10b981;
  --nature-lime: #84cc16;
  --nature-emerald: #059669;
  --nature-teal: #14b8a6;

  --bg-primary: #f0fdf4;
  --bg-secondary: #dcfce7;
  --bg-accent: #bbf7d0;
  --bg-dark: #064e3b;

  --text-primary: #064e3b;
  --text-secondary: #047857;
  --text-muted: #059669;
  --text-inverse: #f0fdf4;

  --border-color: #86efac;
}

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

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

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Friendly and Rounded */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 3px solid var(--nature-green);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  border-radius: 0 0 30px 30px;
}

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

.site-logo a {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--nature-emerald);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.site-logo a:hover {
  color: var(--nature-green);
  transform: rotate(-3deg) scale(1.05);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: transparent;
}

.site-nav a:hover {
  color: var(--text-inverse);
  background: var(--nature-green);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transform: translateY(-3px);
}

/* Hero Section - Playful and Organic */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
  border-radius: 50px;
  margin: 2rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "🌿";
  position: absolute;
  top: 2rem;
  right: 5rem;
  font-size: 4rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.section.head::after {
  content: "🍃";
  position: absolute;
  bottom: 2rem;
  left: 5rem;
  font-size: 3rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.section.head h1 {
  font-family: "Nunito", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--nature-emerald);
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: "Nunito", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--nature-emerald);
  position: relative;
  display: inline-block;
}

.section header h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--nature-green), var(--nature-lime));
  border-radius: 10px;
  opacity: 0.3;
}

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

/* Footer - Organic and Friendly */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  border-top: 5px solid var(--nature-green);
  border-radius: 50px 50px 0 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--bg-accent);
  line-height: 1.8;
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--bg-accent);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--nature-lime);
  opacity: 1;
  transform: scale(1.1);
}

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

.copyright a {
  color: var(--bg-accent);
  font-size: 0.95rem;
  opacity: 0.7;
}

/* Animations */
@keyframes bounceIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: bounceIn 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: #047857;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
}
