/* Template 67 - Royal Purple Luxury */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
  --bg-primary: #1a0a2e;
  --bg-secondary: #240b3e;
  --accent-1: #9b59b6;
  --accent-2: #d4af37;
  --accent-3: #e8c547;
  --text-primary: #f8f3ff;
  --text-secondary: #c5a5e6;
  --text-muted: #8e7ba8;
}

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

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

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  background-attachment: fixed;
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(155, 89, 182, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  animation: royalGlow 15s ease-in-out infinite;
}

@keyframes royalGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

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

.site-header {
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-2);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.3);
}

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

.site-logo a {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
  letter-spacing: 2px;
}

.site-logo a:hover {
  color: var(--accent-3);
  text-shadow: 0 4px 16px rgba(212, 175, 55, 0.6);
}

.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: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 1px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s ease;
}

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

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

.section.head {
  padding: 9rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(155, 89, 182, 0.5);
  animation: luxuryFade 2s ease-in-out;
  line-height: 1.2;
}

@keyframes luxuryFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.section {
  padding: 6rem 0;
}

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

.section header h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-2);
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

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

.footer {
  background: rgba(26, 10, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 4rem 0 1.5rem;
  border-top: 2px solid var(--accent-1);
  margin-top: 6rem;
  box-shadow: 0 -4px 20px rgba(155, 89, 182, 0.2);
}

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

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

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(155, 89, 182, 0.3);
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 1s ease forwards;
}

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

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(--accent-2);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Libre Baskerville", serif;
}
