/* Template 4 - Soft Pastel / Rounded Modern */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap");

:root {
  --color-lavender: #e8e4f3;
  --color-soft-pink: #fce4ec;
  --color-mint: #e0f2f1;
  --color-peach: #fff3e0;
  --color-sky: #e3f2fd;
  
  --color-purple: #7c4dff;
  --color-coral: #ff6b6b;
  --color-teal-dark: #26a69a;
  
  --bg-primary: #fafbfc;
  --bg-secondary: #ffffff;
  --bg-accent: var(--color-lavender);
  
  --text-primary: #2d3436;
  --text-secondary: #636e72;
  --text-muted: #b2bec3;
  --accent: var(--color-purple);
  --accent-secondary: var(--color-coral);
}

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

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

body {
  font-family: "Inter", 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 - Floating Pill Style */
.site-header {
  background: transparent;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.site-logo a:hover {
  color: var(--accent);
  transform: scale(1.02);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--accent);
  background: var(--color-lavender);
}

/* Hero Section - Centered with Soft Background */
.section.head {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--color-lavender) 50%, var(--bg-primary) 100%);
}

.section.head h1 {
  font-family: "Sora", sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  line-height: 1.2;
}

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

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

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

.section header h2 {
  font-family: "Sora", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

/* Footer - Soft Card with Rounded Corners */
.footer {
  background: var(--bg-secondary);
  padding: 0 2rem;
  margin-top: 3rem;
}

.footer > .container {
  background: var(--color-lavender);
  padding: 3rem;
  border-radius: 32px 32px 0 0;
  max-width: 1200px;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.15);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

/* Animations */
@keyframes gentleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: gentleFade 0.5s ease forwards;
}

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

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: "Sora", sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
