/* Template 5 - Elegant Purple Luxury */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --luxury-purple: #7c3aed;
  --luxury-gold: #fbbf24;
  --luxury-deep: #4c1d95;
  --luxury-light: #ddd6fe;

  --bg-primary: #faf5ff;
  --bg-secondary: #f3e8ff;
  --bg-dark: #2e1065;

  --text-primary: #3b0764;
  --text-secondary: #6b21a8;
  --text-muted: #9333ea;
  --text-inverse: #faf5ff;

  --border-color: #e9d5ff;
}

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

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

body {
  font-family: "Montserrat", 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 - Elegant and Refined */
.site-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--luxury-gold);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--luxury-deep);
  text-decoration: none;
  font-style: italic;
  transition: all 0.3s ease;
  position: relative;
}

.site-logo a::after {
  content: "✦";
  position: absolute;
  right: -25px;
  top: -5px;
  color: var(--luxury-gold);
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.site-logo a:hover::after {
  opacity: 1;
  right: -30px;
}

.site-logo a:hover {
  color: var(--luxury-purple);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.05em;
}

.site-nav a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--luxury-purple), var(--luxury-gold));
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--luxury-purple);
}

.site-nav a:hover::before {
  width: 100%;
}

/* Hero Section - Luxurious */
.section.head {
  padding: 9rem 0 7rem;
  text-align: center;
  background: radial-gradient(circle at top, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}

.section.head::before {
  content: "✦";
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--luxury-gold);
  opacity: 0.3;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.2);
  }
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--luxury-deep);
  font-style: italic;
  line-height: 1.2;
}

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

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

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

.section header::before {
  content: "✦";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--luxury-gold);
  opacity: 0.5;
}

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--luxury-deep);
  font-style: italic;
}

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

/* Footer - Sophisticated */
.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--luxury-deep) 100%);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  border-top: 2px solid var(--luxury-gold);
}

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

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

.footer-tagline {
  color: var(--luxury-light);
  line-height: 1.8;
  opacity: 0.9;
}

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

.footer-links a {
  color: var(--luxury-light);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--luxury-gold);
  opacity: 1;
  transform: translateY(-2px);
}

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

.copyright a {
  color: var(--luxury-light);
  font-size: 0.95rem;
  opacity: 0.7;
}

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

.fade-in {
  opacity: 0;
  animation: elegantFade 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.7rem;
  color: #6b21a8;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
