/* Template 46 - Warm Terracotta Earthy */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --terracotta: #e07856;
  --terracotta-dark: #c95f3e;
  --sand: #f5ebe0;
  --sand-dark: #e3d5ca;
  --olive: #6d7f5c;
  --olive-dark: #4a5a3e;
  --text-primary: #3d3229;
  --text-secondary: #5a4e42;
  --text-muted: #9a8d7f;
}

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

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

body {
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--sand);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Organic and Natural */
.site-header {
  background: var(--sand-dark);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--terracotta);
  box-shadow: 0 4px 20px rgba(224, 120, 86, 0.15);
}

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

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

.site-logo a:hover {
  color: var(--olive-dark);
  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-bottom: 3px;
}

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

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

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

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
}

.section.head h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--terracotta-dark);
  line-height: 1.2;
  animation: warmFadeIn 1.5s ease-out;
}

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

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

/* 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.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--olive-dark);
}

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

/* Footer */
.footer {
  background: var(--terracotta);
  color: var(--sand);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.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(--sand);
  line-height: 1.8;
  opacity: 0.95;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(245, 235, 224, 0.3);
}

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

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

.fade-in {
  opacity: 0;
  animation: earthySlide 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.75rem;
  color: var(--olive-dark);
  margin-top: 22px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
}
