/* Template 61 - Plum Purple / Elegant Luxury */
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --gradient-2: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  --gradient-3: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
  --gradient-4: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  --gradient-5: linear-gradient(135deg, #ddd6fe 0%, #a78bfa 100%);

  --bg-primary: #1a0b2e;
  --bg-secondary: #2d1b4e;
  --glass-bg: rgba(168, 85, 247, 0.05);
  --glass-border: rgba(168, 85, 247, 0.2);

  --text-primary: #f5f3ff;
  --text-secondary: #ddd6fe;
  --text-muted: #a78bfa;
}

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  animation: luxuryShift 20s ease-in-out infinite;
}

@keyframes luxuryShift {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
}

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

/* Header - Luxury Design */
.site-header {
  background: rgba(26, 11, 46, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(168, 85, 247, 0.3);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
}

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

.site-logo a {
  font-family: "Bodoni Moda", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c084fc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-style: italic;
}

.site-logo a:hover {
  color: #ddd6fe;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.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;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.site-nav a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Hero Section - Center Aligned */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Bodoni Moda", serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-style: italic;
}

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

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

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

.section header h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #c084fc;
  font-style: italic;
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 2px solid rgba(168, 85, 247, 0.3);
  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.8;
}

.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: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

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

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

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

.fade-in {
  opacity: 0;
  animation: floatIn 0.9s 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: #c084fc;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
