/* Template 61 - Amber Honey */
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Raleway:wght@300;400;500;600&display=swap");

:root {
  --amber: #ffbf00;
  --honey: #f7a500;
  --gold: #d48806;
  --caramel: #a66e00;
  --cream: #fff8e7;
  --dark-brown: #3e2723;

  --text-primary: #3e2723;
  --text-secondary: #6d4c41;
  --text-muted: #8d6e63;
}

* {
  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: linear-gradient(180deg, var(--cream) 0%, #fff5db 100%);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 191, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(247, 165, 0, 0.08) 0%, transparent 40%);
  animation: honeyFlow 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes honeyFlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3%, 3%);
  }
}

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

/* Header */
.site-header {
  background: rgba(255, 248, 231, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 2px solid var(--amber);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 191, 0, 0.2);
}

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

.site-logo a {
  font-family: "Amatic SC", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

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

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.site-nav a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--gold);
  background: rgba(255, 191, 0, 0.1);
}

.site-nav a:hover::before {
  width: 80%;
}

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

.section.head h1 {
  font-family: "Amatic SC", cursive;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold);
  letter-spacing: 3px;
  animation: honeyDrip 3s ease-in-out infinite;
}

@keyframes honeyDrip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

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

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

.section header h2 {
  font-family: "Amatic SC", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--honey);
  letter-spacing: 2px;
}

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

/* Footer */
.footer {
  background: rgba(255, 248, 231, 0.95);
  border-top: 2px solid var(--amber);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 -4px 20px rgba(255, 191, 0, 0.1);
}

.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: var(--text-secondary);
  line-height: 1.8;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--honey);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s 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.7rem;
  color: var(--gold);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
