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

:root {
  --bg-primary: #fef9f3;
  --bg-secondary: #fff5eb;
  --bg-tertiary: #ffe8d6;

  --pastel-pink: #ffc4d6;
  --pastel-blue: #c4e7ff;
  --pastel-purple: #e4c4ff;
  --pastel-green: #c4ffd6;
  --pastel-yellow: #fff4c4;

  --text-primary: #5a4a42;
  --text-secondary: #8b7a6f;
  --text-muted: #b5a89d;

  --border-color: #f0e4d7;
}

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

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

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 196, 214, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(196, 231, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(228, 196, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Soft Pastel */
.site-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 196, 214, 0.1);
}

.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;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 0 var(--pastel-pink);
}

.site-logo a:hover {
  transform: translateY(-2px);
  text-shadow: 3px 3px 0 var(--pastel-blue);
}

.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.25rem;
  border-radius: 20px;
  background: transparent;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--pastel-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 196, 214, 0.3);
}

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

.section.head h1 {
  font-family: "Comfortaa", cursive;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-shadow: 3px 3px 0 var(--pastel-purple);
  animation: gentleBounce 3s ease-in-out infinite;
}

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

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  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: "Comfortaa", cursive;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-shadow: 2px 2px 0 var(--pastel-blue);
}

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

/* Footer - Soft Pastel */
.footer {
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-tertiary));
  border-top: 2px solid var(--border-color);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

.footer-links a:hover {
  color: var(--text-primary);
  background: var(--pastel-yellow);
  transform: translateY(-2px);
}

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

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

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

.fade-in {
  opacity: 0;
  animation: floatSoft 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: #5a4a42;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
