/* Template 37 - Rustic Wood & Leather */
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@400;600;700;800&family=Cabin:wght@400;500;600;700&display=swap");

:root {
  --wood-dark: #3e2723;
  --wood-med: #5d4037;
  --wood-light: #8d6e63;
  --leather: #6d4c41;
  --cream: #faf3e0;
  --burnt-orange: #d84315;
  --text-primary: #2c1810;
  --text-secondary: #5d4037;
  --text-muted: #8d6e63;
}

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

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

body {
  font-family: "Cabin", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-image: repeating-linear-gradient(90deg, rgba(62, 39, 35, 0.03) 0px, transparent 2px, transparent 4px),
    repeating-linear-gradient(0deg, rgba(62, 39, 35, 0.03) 0px, transparent 2px, transparent 4px);
}

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

/* Header */
.site-header {
  background: var(--wood-dark);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(62, 39, 35, 0.4);
  border-bottom: 3px solid var(--burnt-orange);
}

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

.site-logo a {
  font-family: "Bitter", serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.site-logo a:hover {
  color: var(--burnt-orange);
  transform: scale(1.03);
}

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

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border: 2px solid transparent;
}

.site-nav a:hover {
  background: var(--leather);
  border-color: var(--burnt-orange);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--wood-med) 0%, var(--wood-dark) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(250, 243, 224, 0.05) 35px,
    rgba(250, 243, 224, 0.05) 70px
  );
  pointer-events: none;
}

.section.head h1 {
  font-family: "Bitter", serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--cream);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  position: relative;
  animation: slideDown 0.8s ease;
}

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

.section.head p {
  font-size: 1.3rem;
  color: rgba(250, 243, 224, 0.9);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

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

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

.section header h2 {
  font-family: "Bitter", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--wood-dark);
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--burnt-orange);
  border-radius: 2px;
}

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

/* Footer */
.footer {
  background: var(--wood-dark);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: var(--cream);
  border-top: 3px solid var(--burnt-orange);
}

.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: rgba(250, 243, 224, 0.8);
  line-height: 1.8;
}

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

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

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

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

.copyright a {
  color: rgba(250, 243, 224, 0.6);
  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.6s 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: var(--wood-dark);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Bitter", serif;
  font-weight: 700;
}
