/* Template 50 - Burgundy Velvet / Luxe Theater */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap");

:root {
  --bg-primary: #1a0e14;
  --bg-secondary: #2b1621;
  --bg-tertiary: #3d1e2e;

  --text-primary: #f5e6ea;
  --text-secondary: #d4b8c1;
  --text-muted: #a58894;

  --accent-burgundy: #8b2447;
  --accent-velvet: #a83058;
  --accent-rose: #c85c7c;
}

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

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

body {
  font-family: "Lato", sans-serif;
  line-height: 1.8;
  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(ellipse at 20% 30%, rgba(139, 36, 71, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 48, 88, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Velvet Curtain */
.site-header {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(43, 22, 33, 0.95) 100%);
  border-bottom: 2px solid var(--accent-burgundy);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(139, 36, 71, 0.3);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--accent-rose);
  text-decoration: none;
  transition: all 0.4s ease;
  font-style: italic;
  text-shadow: 2px 2px 8px rgba(139, 36, 71, 0.5);
}

.site-logo a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(200, 92, 124, 0.8);
  transform: scale(1.04);
}

.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: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--accent-rose);
  border-bottom: 2px solid var(--accent-burgundy);
}

/* Hero Section - Grand Theater */
.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-burgundy) 50%, transparent 100%);
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 5.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  font-style: italic;
  text-shadow: 3px 3px 12px rgba(139, 36, 71, 0.6);
}

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

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

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

.section header::before {
  content: "◆";
  display: block;
  font-size: 2rem;
  color: var(--accent-burgundy);
  margin-bottom: 1rem;
}

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

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

/* Footer - Velvet Finish */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--accent-burgundy);
  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.9;
  font-weight: 300;
}

.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;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-rose);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-tertiary);
}

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

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

.fade-in {
  opacity: 0;
  animation: curtainRise 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.9rem;
  color: var(--accent-rose);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
