/* Template 93 - Rainforest Canopy / Tropical Lush */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Nunito:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --canopy-dark: #1a2f1a;
  --canopy-deep: #2d4a2d;
  --canopy-green: #3d6b3d;
  --canopy-bright: #5a9a5a;
  --canopy-leaf: #7cbd7c;
  --canopy-light: #d4e8d4;
  --canopy-cream: #f5f9f2;
  --canopy-flower: #e85d75;
  --canopy-gold: #d4a853;
  --canopy-bark: #6b4423;
}

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

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

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.7;
  color: var(--canopy-dark);
  background: var(--canopy-cream);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, var(--canopy-light) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Canopy Opening */
.site-header {
  background: var(--canopy-deep);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 47, 26, 0.3);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,0 Q25,20 50,10 T100,0 L100,20 L0,20 Z' fill='%232d4a2d'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 20px;
}

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

.site-logo a {
  font-family: 'Marcellus', serif;
  font-size: 1.75rem;
  color: var(--canopy-cream);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo a::before {
  content: '🌿';
  font-size: 1.5rem;
}

.site-logo a:hover {
  color: var(--canopy-leaf);
}

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

.site-nav a {
  color: var(--canopy-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  background: var(--canopy-bright);
  color: var(--canopy-cream);
}

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

.section.head::before {
  content: '❦';
  display: block;
  font-size: 2rem;
  color: var(--canopy-flower);
  margin-bottom: 1.5rem;
}

.section.head h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--canopy-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section.head h1::first-letter {
  font-size: 4.5rem;
  color: var(--canopy-green);
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  margin-top: 8px;
}

.section.head p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--canopy-deep);
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  padding: 2rem;
  background: rgba(93, 154, 93, 0.1);
  border-radius: 20px;
  border-left: 4px solid var(--canopy-bright);
}

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

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

.section header h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--canopy-dark);
  margin-bottom: 1rem;
}

.section header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--canopy-bright), var(--canopy-flower));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--canopy-deep);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--canopy-dark);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30'%3E%3Cpath d='M0,30 Q25,0 50,15 T100,30 L100,30 L0,30 Z' fill='%231a2f1a'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 30px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--canopy-deep);
}

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

.footer-tagline {
  color: var(--canopy-leaf);
  line-height: 1.8;
  font-style: italic;
}

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

.footer-links a {
  color: var(--canopy-light);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links a::before {
  content: '→';
  color: var(--canopy-flower);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--canopy-leaf);
}

.footer-links a:hover::before {
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

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

/* Animations */
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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-family: 'Marcellus', serif;
  font-size: 1.6rem;
  color: var(--canopy-dark);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
