/* Template 5 - Playful Rounded */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --primary: #ff6b9d;
  --secondary: #c06c84;
  --accent: #f67280;
  --bg-primary: #fef6fb;
  --bg-secondary: #fff0f6;
  --bg-card: #ffffff;

  --text-primary: #2d3561;
  --text-secondary: #6b7aa1;
  --text-muted: #9fa8c7;
}

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

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

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

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

/* Header - Playful Rounded */
.site-header {
  background: var(--bg-card);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(255, 107, 157, 0.1);
  border-radius: 0 0 30px 30px;
}

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

.site-logo a {
  font-family: "Nunito", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  transform: scale(1.1) 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: 50px;
}

.site-nav a:hover {
  color: var(--primary);
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

/* Hero Section - Playful */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-radius: 0 0 60px 60px;
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "✨";
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 4rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.section.head::after {
  content: "💫";
  position: absolute;
  bottom: 15%;
  right: 15%;
  font-size: 3rem;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.section.head h1 {
  font-family: "Nunito", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

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

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

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

.section header h2 {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Footer - Playful Rounded */
.footer {
  background: var(--bg-card);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -10px 40px rgba(255, 107, 157, 0.1);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 500;
}

.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;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.footer-links a:hover {
  color: var(--primary);
  background: var(--bg-secondary);
}

.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 floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.6s 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-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 700;
}
