/* Template 56 - Soft Lilac Dream */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Nunito:ital,wght@0,300;0,400;0,600;1,400&display=swap");

:root {
  --lilac: #c8b6ff;
  --lavender: #b8a9d8;
  --soft-purple: #e0d5ff;
  --deep-purple: #7c5bbf;
  --cream: #faf8ff;

  --bg-primary: #f5f1ff;
  --bg-secondary: #ffffff;

  --text-primary: #4a3668;
  --text-secondary: #6b5b8a;
  --text-muted: #9d8fb8;
}

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

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

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 10% 20%, rgba(200, 182, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(184, 169, 216, 0.15) 0%, transparent 40%);
}

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

/* Header */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--soft-purple);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 20px rgba(200, 182, 255, 0.15);
  backdrop-filter: blur(10px);
}

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

.site-logo a {
  font-family: "Comfortaa", cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--deep-purple);
  text-decoration: none;
  transition: all 0.4s ease;
}

.site-logo a:hover {
  color: var(--lilac);
  transform: translateY(-3px);
  text-shadow: 0 5px 15px rgba(200, 182, 255, 0.4);
}

.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.7rem 1.4rem;
  border-radius: 30px;
}

.site-nav a:hover {
  color: var(--deep-purple);
  background: var(--soft-purple);
  transform: scale(1.08);
}

/* Hero Section */
.section.head {
  padding: 7.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--soft-purple) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::before,
.section.head::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 182, 255, 0.3) 0%, transparent 70%);
  animation: floatBubble 8s ease-in-out infinite;
}

.section.head::before {
  top: -150px;
  left: -150px;
}

.section.head::after {
  bottom: -150px;
  right: -150px;
  animation-delay: 4s;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

.section.head h1 {
  font-family: "Comfortaa", cursive;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--deep-purple);
  animation: gentleFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

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

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: "Comfortaa", cursive;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-purple);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--soft-purple);
  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.9;
}

.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;
  font-weight: 600;
}

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

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

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

/* Animations */
@keyframes softFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: softFadeIn 0.9s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.15s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.45s;
}

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(--deep-purple);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Comfortaa", cursive;
  font-weight: 600;
}
