/* Template 22 - Desert Sunset / Warm Sand */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  --gradient-2: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  --gradient-3: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  --gradient-4: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
  --gradient-5: linear-gradient(135deg, #ff9068 0%, #fd746c 100%);

  --bg-primary: #fef5e7;
  --bg-secondary: #fff9e6;
  --glass-bg: rgba(255, 243, 224, 0.8);
  --glass-border: rgba(247, 151, 30, 0.2);

  --text-primary: #5d4037;
  --text-secondary: #8d6e63;
  --text-muted: #a1887f;
}

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

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

body {
  font-family: "Raleway", 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 30% 20%, rgba(255, 183, 77, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

/* Header - Warm Desert Style */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--glass-border);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(247, 151, 30, 0.1);
}

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

.site-logo a {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f7971e;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(247, 151, 30, 0.2);
}

.site-logo a:hover {
  color: #ff6b6b;
  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: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.site-nav a:hover {
  color: #f7971e;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f7971e, #ff6b6b);
  transition: width 0.3s ease;
}

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

/* Hero Section - Desert Sunset */
.section.head {
  padding: 7rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f7971e;
  text-shadow: 3px 3px 6px rgba(247, 151, 30, 0.2);
  animation: sunGlow 4s ease-in-out infinite alternate;
}

@keyframes sunGlow {
  0% {
    text-shadow: 3px 3px 6px rgba(247, 151, 30, 0.2);
  }
  100% {
    text-shadow: 3px 3px 12px rgba(247, 151, 30, 0.4), 0 0 30px rgba(255, 107, 107, 0.2);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.9;
}

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

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

.section header h2 {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff6b6b;
  text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.15);
}

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

/* Footer - Sunset Fade */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #ffe4d1 100%);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--glass-border);
  margin-top: 5rem;
}

.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.9;
}

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

.footer-links a:hover {
  color: #f7971e;
  transform: translateY(-2px);
}

.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(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s 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.8rem;
  color: #f7971e;
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Lora", serif;
}
