/* Template 10 - Warm Terracotta - Earthy Elegance */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Lora:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #c97d60 0%, #a85d47 100%);
  --gradient-2: linear-gradient(135deg, #e8b4a0 0%, #c97d60 100%);
  --gradient-3: linear-gradient(135deg, #f5e6df 0%, #ead5ca 100%);
  --gradient-4: linear-gradient(135deg, #a85d47 0%, #8a4a38 100%);
  --gradient-5: linear-gradient(135deg, #faf5f2 0%, #f5e6df 100%);

  --bg-primary: #faf5f2;
  --bg-secondary: #f5e6df;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(201, 125, 96, 0.15);

  --text-primary: #3d2820;
  --text-secondary: #6b4a3a;
  --text-muted: #a85d47;
}

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

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

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.7;
  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 25% 25%, rgba(201, 125, 96, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(232, 180, 160, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(61, 40, 32, 0.06);
  transition: all 0.3s ease;
}

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

.site-logo a {
  font-family: "Lora", serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.site-logo a:hover {
  color: var(--text-muted);
  transform: scale(1.02);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 3.7rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: fadeInLeft 0.9s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

.section header h2 {
  font-family: "Lora", serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
  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.8;
}

.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: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

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

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

.fade-in {
  opacity: 0;
  animation: floatIn 0.75s 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.65rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Lora", serif;
}
