/* Template 63 - Burnt Sienna Desert */
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@400;600;700;900&family=Karla:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #c85a3e 0%, #b8482f 100%);
  --gradient-2: linear-gradient(135deg, #e07856 0%, #d96743 100%);
  --gradient-3: linear-gradient(135deg, #f4a261 0%, #e9914a 100%);
  --gradient-4: linear-gradient(135deg, #8b5a3c 0%, #6d4428 100%);
  --gradient-5: linear-gradient(135deg, #d4a574 0%, #c89560 100%);

  --bg-primary: #faf5f0;
  --bg-secondary: #f5ebe0;
  --glass-bg: rgba(200, 90, 62, 0.08);
  --glass-border: rgba(200, 90, 62, 0.2);

  --text-primary: #3d2516;
  --text-secondary: #6d4428;
  --text-muted: #8b5a3c;
}

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

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

body {
  font-family: "Karla", sans-serif;
  line-height: 1.75;
  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 80% 20%, rgba(200, 90, 62, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(233, 145, 74, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 4px solid var(--text-primary);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(61, 37, 22, 0.1);
}

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

.site-logo a {
  font-family: "Bitter", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-logo a:hover {
  color: #c85a3e;
  transform: scale(1.08);
}

.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: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
  transform: translateY(-2px);
}

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

.section.head h1 {
  font-family: "Bitter", serif;
  font-size: 4.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.section.head p {
  font-size: 1.35rem;
  color: var(--text-secondary);
  max-width: 950px;
  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: "Bitter", serif;
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -1px;
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3.5rem 0 1.5rem;
  border-top: 4px solid var(--text-primary);
  margin-top: 6rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1.05rem;
}

.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: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #c85a3e;
  transform: translateX(3px);
}

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

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

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

.fade-in {
  opacity: 0;
  animation: floatIn 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.9rem;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
}
