/* Template 44 - Autumn Harvest / Warm Rustic */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cabin:wght@400;500;600;700&display=swap');

:root {
  --pumpkin: #D35400;
  --burnt-orange: #BA4A00;
  --amber: #E67E22;
  --golden-wheat: #F5B041;
  --maple-red: #922B21;
  --chestnut: #6E2C00;
  --bark: #4A2511;
  --cream-corn: #FEF9E7;
  --warm-white: #FDFEFE;
  --sage-green: #7D8471;
  --deep-forest: #1E3A2F;
  --charcoal-wood: #2C2416;
}

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

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

body {
  font-family: 'Cabin', sans-serif;
  line-height: 1.75;
  color: var(--charcoal-wood);
  background: var(--cream-corn);
  font-weight: 400;
  font-size: 1rem;
}

/* Subtle leaf pattern background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 Q50 25 40 40 Q30 25 40 10' fill='%23D35400' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Barn Wood Style */
.site-header {
  background: linear-gradient(180deg, var(--bark) 0%, var(--chestnut) 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.site-header::after {
  content: '';
  display: block;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--pumpkin) 0px,
    var(--pumpkin) 20px,
    var(--amber) 20px,
    var(--amber) 40px,
    var(--golden-wheat) 40px,
    var(--golden-wheat) 60px,
    var(--maple-red) 60px,
    var(--maple-red) 80px
  );
}

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

.site-logo a {
  font-family: 'Bitter', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--cream-corn);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-logo a::before {
  content: '\2726 ';
  color: var(--golden-wheat);
}

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

.site-nav a {
  color: var(--cream-corn);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a:hover {
  background: var(--pumpkin);
  transform: translateY(-2px);
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: left;
  position: relative;
  background: linear-gradient(135deg, var(--cream-corn) 0%, rgba(245, 176, 65, 0.1) 100%);
}

.section.head::before {
  content: '\2766';
  position: absolute;
  top: 2rem;
  right: 10%;
  font-size: 8rem;
  color: var(--pumpkin);
  opacity: 0.1;
}

.section.head h1 {
  font-family: 'Bitter', serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--chestnut);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}



.section.head p {
  font-size: 1.1rem;
  color: var(--bark);
  max-width: 700px;
  line-height: 1.9;
  padding: 1.5rem;
  background: var(--warm-white);
  border-left: 4px solid var(--pumpkin);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.section header h2 {
  font-family: 'Bitter', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--chestnut);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: '\2767';
  color: var(--pumpkin);
  margin: 0 0.75rem;
  font-size: 0.7em;
}

.section header p {
  font-size: 1.05rem;
  color: var(--bark);
  max-width: 600px;
  margin: 1rem auto 0;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Bitter', serif;
  font-size: 1.55rem;
  color: var(--burnt-orange);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

/* Footer - Harvest Style */
.footer {
  background: var(--deep-forest);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: 
    url("data:image/svg+xml,%3Csvg width='40' height='20' viewBox='0 0 40 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 L20 0 L40 20' fill='%23FEF9E7'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 20px;
}

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

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

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a:hover {
  color: var(--golden-wheat);
  border-color: var(--golden-wheat);
  background: rgba(245, 176, 65, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

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

.fade-in {
  opacity: 0;
  animation: fadeInLeft 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; }

/* Falling leaf animation */
@keyframes leafFall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
