/* Template 14 - Soft Pastel / Kawaii */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Comfortaa:wght@400;700&display=swap");

:root {
  --bg-primary: #fff5f7;
  --bg-secondary: #ffe8f0;
  --bg-accent: #ffd4e5;

  --text-primary: #5a3a52;
  --text-secondary: #8b6e87;
  --text-muted: #b399ad;

  --pink-soft: #ffb3d9;
  --pink-medium: #ff80bf;
  --blue-soft: #b3d9ff;
  --purple-soft: #d9b3ff;
  --yellow-soft: #fff4b3;
  --mint-soft: #b3ffcc;
}

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

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

body {
  font-family: "Quicksand", "Comic Sans MS", cursive;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--pink-soft) 1px, transparent 1px),
    radial-gradient(circle, var(--blue-soft) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
  animation: floatDots 20s ease-in-out infinite;
}

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

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

/* Header - Soft and rounded */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0 0 30px 30px;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(255, 179, 217, 0.2);
}

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

.site-logo a {
  font-family: "Comfortaa", cursive;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-medium) 0%, var(--purple-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 179, 217, 0.3));
}

.site-logo a:hover {
  filter: drop-shadow(0 4px 8px rgba(255, 179, 217, 0.5));
  transform: scale(1.05) rotate(-2deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  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.75rem 1.5rem;
  border-radius: 20px;
  background: var(--bg-secondary);
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--pink-soft);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 179, 217, 0.3);
}

/* Hero Section - Cheerful and bouncy */
.section.head {
  padding: 7rem 0;
  text-align: center;
}

.section.head h1 {
  font-family: "Comfortaa", cursive;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--pink-medium) 0%, var(--purple-soft) 50%, var(--blue-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 179, 217, 0.3));
  animation: bounce 2s ease-in-out infinite;
}

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

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

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

.section header {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
  padding: 3rem 2rem;
  border-radius: 30px;
  box-shadow: 0 12px 32px rgba(255, 179, 217, 0.2);
}

.section header h2 {
  font-family: "Comfortaa", cursive;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--pink-medium) 0%, var(--purple-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 179, 217, 0.3));
}

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

/* Footer - Cute and rounded */
.footer {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--pink-soft) 100%);
  padding: 4rem 0 2rem;
  border-radius: 30px 30px 0 0;
  margin-top: 5rem;
  box-shadow: 0 -12px 32px rgba(255, 179, 217, 0.2);
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 4px 12px rgba(255, 179, 217, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px dashed rgba(90, 58, 82, 0.2);
}

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

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

.fade-in {
  opacity: 0;
  animation: floatUp 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.75rem;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Comfortaa", cursive;
  background: linear-gradient(135deg, var(--pink-medium) 0%, var(--purple-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
