/* Template 3 - Warm Earthy Tones with Organic Feel */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Lato:wght@300;400;700&display=swap");

:root {
  --warm-orange: #d97706;
  --warm-brown: #92400e;
  --warm-cream: #fef3c7;
  --warm-terracotta: #c2410c;

  --bg-primary: #fffbeb;
  --bg-secondary: #fef3c7;
  --bg-dark: #78350f;

  --text-primary: #451a03;
  --text-secondary: #78350f;
  --text-muted: #a16207;
  --text-inverse: #fffbeb;

  --border-color: #fde68a;
}

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

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

body {
  font-family: "Lato", sans-serif;
  line-height: 1.8;
  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 - Warm and Welcoming */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 3px solid var(--warm-orange);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
}

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

.site-logo a {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--warm-brown);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 0 var(--warm-cream);
}

.site-logo a:hover {
  color: var(--warm-orange);
  transform: translateY(-2px);
}

.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: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  background: transparent;
}

.site-nav a:hover {
  color: var(--text-inverse);
  background: var(--warm-orange);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  transform: translateY(-2px);
}

/* Hero Section - Organic and Inviting */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--warm-cream) 100%);
  border-radius: 0 0 50px 50px;
  margin-bottom: 4rem;
}

.section.head h1 {
  font-family: "Merriweather", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--warm-brown);
  text-shadow: 3px 3px 0 var(--warm-cream);
  animation: gentleBounce 2s ease-in-out infinite;
}

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

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

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

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

.section header h2 {
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--warm-brown);
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: var(--warm-orange);
  border-radius: 2px;
}

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

/* Footer - Rich and Grounded */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  border-top: 5px solid var(--warm-orange);
}

.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(--warm-cream);
  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(--warm-cream);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--warm-orange);
  opacity: 1;
  transform: translateX(5px);
}

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

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

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

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