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

:root {
  --gradient-1: linear-gradient(135deg, #ffd6e8 0%, #c8b6ff 100%);
  --gradient-2: linear-gradient(135deg, #c8b6ff 0%, #9ed2ff 100%);
  --gradient-3: linear-gradient(135deg, #9ed2ff 0%, #b4f8c8 100%);
  --gradient-4: linear-gradient(135deg, #fbe7c6 0%, #ffd6e8 100%);
  --gradient-5: linear-gradient(135deg, #b4f8c8 0%, #fbe7c6 100%);

  --bg-primary: #fffbf5;
  --bg-secondary: #fff4f0;
  --glass-bg: rgba(255, 214, 232, 0.3);
  --glass-border: rgba(200, 182, 255, 0.3);

  --text-primary: #4a4a6a;
  --text-secondary: #7a7a9a;
  --text-muted: #afafcf;
}

* {
  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.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 214, 232, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(158, 210, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(180, 248, 200, 0.2) 0%, transparent 40%);
  animation: dreamFloat 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes dreamFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(3%, 3%) rotate(3deg); }
}

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

/* Header - Dreamy Cloud */
.site-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #ffd6e8 0%, #c8b6ff 50%, #9ed2ff 100%) 1;
  padding: 1.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(200, 182, 255, 0.15);
}

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

.site-logo a {
  font-family: "Comfortaa", cursive;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9ed2 0%, #b19eff 50%, #7ac1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.4s ease;
}

.site-logo a:hover {
  filter: brightness(1.2);
  transform: translateY(-3px);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.3) 0%, rgba(200, 182, 255, 0.3) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 182, 255, 0.3);
}

/* Hero Section - Soft Dream */
.section.head {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Comfortaa", cursive;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ff9ed2 0%, #b19eff 35%, #7ac1ff 70%, #b4f8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  animation: softGlow 5s ease-in-out infinite alternate;
}

@keyframes softGlow {
  0% {
    filter: brightness(1) drop-shadow(0 5px 20px rgba(200, 182, 255, 0.3));
  }
  100% {
    filter: brightness(1.15) drop-shadow(0 8px 30px rgba(255, 158, 210, 0.4));
  }
}

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

/* Section Styling - Gentle */
.section {
  padding: 5.5rem 0;
}

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

.section header h2 {
  font-family: "Comfortaa", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #b19eff 0%, #7ac1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Footer - Pastel Sky */
.footer {
  background: linear-gradient(180deg, rgba(255, 214, 232, 0.2) 0%, rgba(158, 210, 255, 0.2) 100%);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #ffd6e8 0%, #c8b6ff 50%, #9ed2ff 100%) 1;
  margin-top: 6rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 2;
}

.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.4s ease;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.footer-links a:hover {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.3) 0%, rgba(200, 182, 255, 0.3) 100%);
  box-shadow: 0 5px 20px rgba(200, 182, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(200, 182, 255, 0.2);
}

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

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

.fade-in {
  opacity: 0;
  animation: floatInDream 1s 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;
  background: linear-gradient(135deg, #b19eff 0%, #7ac1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 13px;
  text-align: left;
  font-family: "Comfortaa", cursive;
  font-weight: 600;
}
