/* Template 36 - Soft Peach Dream */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&family=Satisfy&display=swap");

:root {
  --bg-primary: #fff5f0;
  --bg-secondary: #ffe8dc;
  --bg-card: #ffffff;
  --accent-peach: #ff8c69;
  --accent-coral: #ff6b6b;
  --accent-pink: #ffa8b5;
  --text-primary: #3d2b2b;
  --text-secondary: #8b6f6f;
  --text-muted: #c4a8a8;
}

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

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

body {
  font-family: "Comfortaa", cursive;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 105, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatBubble 15s ease-in-out infinite;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, 100px);
  }
  50% {
    transform: translate(200px, 50px);
  }
  75% {
    transform: translate(50px, 150px);
  }
}

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

/* Header - Soft wavy design */
.site-header {
  background: var(--bg-card);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 140, 105, 0.15);
  border-bottom: 3px solid var(--accent-peach);
  border-radius: 0 0 30px 30px;
}

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

.site-logo a {
  font-family: "Satisfy", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-coral);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--accent-peach);
  transform: rotate(-3deg) scale(1.1);
}

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

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

.site-nav a:hover {
  background: var(--bg-secondary);
  color: var(--accent-coral);
  transform: scale(1.05);
}

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

.section.head h1 {
  font-family: "Satisfy", cursive;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--accent-coral);
  animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto;
}

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

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

.section header h2 {
  font-family: "Satisfy", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent-peach);
}

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

/* Footer - Soft rounded */
.footer {
  background: var(--bg-card);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--accent-peach);
  margin-top: 5rem;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 15px rgba(255, 140, 105, 0.15);
}

.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: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent-coral);
  transform: translateY(-3px);
}

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

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

/* Animations */
@keyframes gentleRise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: gentleRise 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(--accent-coral);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Satisfy", cursive;
}
