/* Template 41 - Mint Green & Chocolate */
@import url("https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;600;700;900&family=Lato:wght@400;700&display=swap");

:root {
  --mint: #a7f3d0;
  --mint-dark: #6ee7b7;
  --mint-light: #d1fae5;
  --chocolate: #44403c;
  --chocolate-dark: #292524;
  --chocolate-light: #78716c;
  --cream: #fef7ee;
  --text-dark: #1c1917;
  --text-mid: #57534e;
}

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

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

body {
  font-family: "Lato", sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(167, 243, 208, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  background: var(--chocolate-dark);
  padding: 1.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(68, 64, 60, 0.3);
  border-bottom: 3px solid var(--mint);
}

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

.site-logo a {
  font-family: "Vollkorn", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--mint);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.site-logo a::after {
  content: "●";
  color: var(--mint-dark);
  margin-left: 5px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.site-logo a:hover {
  color: var(--mint-light);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--mint-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: 2px solid transparent;
}

.site-nav a:hover {
  background: var(--mint);
  color: var(--chocolate-dark);
  border-color: var(--mint-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(167, 243, 208, 0.3);
}

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

.section.head::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--mint-dark) 0%, transparent 70%);
  opacity: 0.3;
  animation: ripple 4s ease-in-out infinite;
}

@keyframes ripple {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
}

.section.head h1 {
  font-family: "Vollkorn", serif;
  font-size: 4.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--chocolate-dark);
  position: relative;
  z-index: 1;
  animation: slideInFromLeft 1s ease;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-mid);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: "Vollkorn", serif;
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--chocolate-dark);
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: "~";
  position: absolute;
  color: var(--mint-dark);
  font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.section header h2::before {
  left: -40px;
}

.section header h2::after {
  right: -40px;
}

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

/* Footer */
.footer {
  background: var(--chocolate-dark);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: var(--mint-light);
  border-top: 3px solid var(--mint);
}

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

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

.footer-links a {
  color: rgba(209, 250, 229, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

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

.copyright a {
  color: rgba(209, 250, 229, 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.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.9rem;
  color: var(--chocolate-dark);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Vollkorn", serif;
  font-weight: 700;
}
