/* Template 31 - Lavender Dreams / Soft Pastel */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Mukta:wght@300;400;500;600&display=swap");

:root {
  --color-primary: #9b59b6;
  --color-secondary: #6c5ce7;
  --color-accent: #a29bfe;
  --color-soft: #dda0dd;
  --bg-primary: #f8f4f9;
  --bg-secondary: #f0e9f4;
  --bg-card: #ffffff;
  --text-primary: #4a2a4e;
  --text-secondary: #6b4569;
  --text-muted: #9b7b99;
  --border-color: #d8bfd8;
}

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

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

body {
  font-family: "Mukta", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 30% 20%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(162, 155, 254, 0.08) 0%, transparent 50%);
}

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

/* Header with Soft Gradient */
.site-header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 233, 244, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.1);
}

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

.site-logo a {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.4s ease;
  font-style: italic;
}

.site-logo a:hover {
  color: var(--color-secondary);
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(155, 89, 182, 0.3));
}

.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: 500;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  position: relative;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.site-nav a:hover {
  color: white;
}

.site-nav a:hover::before {
  opacity: 1;
}

/* Hero Section with Dreamy Effect */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 70%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.section.head::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 155, 254, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

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

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.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: "Lora", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-style: italic;
}

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

/* Footer with Gentle Gradient */
.footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--color-soft);
  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: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

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

.copyright a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Animations */
@keyframes softFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.fade-in {
  opacity: 0;
  animation: softFadeIn 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.8rem;
  color: var(--color-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Lora", serif;
  font-style: italic;
}
