/* Template 3 - Warm Terracotta / Organic */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap");

:root {
  --bg-primary: #faf8f5;
  --bg-secondary: #f5ebe0;
  --bg-accent: #d4a373;

  --text-primary: #3e2723;
  --text-secondary: #6d4c41;
  --text-muted: #8d6e63;
  --text-inverse: #faf8f5;

  --terracotta: #e07856;
  --sage: #a8b78f;
  --clay: #c69c6d;
}

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

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

body {
  font-family: "Lato", 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 - Centered with Rounded Corners */
.site-header {
  background: var(--bg-secondary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--terracotta);
  box-shadow: 0 4px 20px rgba(62, 39, 35, 0.08);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s ease;
  font-style: italic;
}

.site-logo a:hover {
  color: var(--terracotta);
  transform: scale(1.05);
}

.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: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

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

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

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

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

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Footer - Warm Background */
.footer {
  background: var(--terracotta);
  color: var(--text-inverse);
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  border-top: 5px solid var(--clay);
}

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

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

.footer-tagline {
  color: rgba(250, 248, 245, 0.9);
  line-height: 1.8;
  font-size: 1rem;
}

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

.footer-links a {
  color: rgba(250, 248, 245, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.footer-links a:hover {
  color: var(--text-inverse);
  border-bottom-color: var(--text-inverse);
}

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

.copyright a {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.95rem;
}

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

.fade-in {
  opacity: 0;
  animation: gentleFloat 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(--text-primary);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
