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

:root {
  --bg-primary: #1a0a0f;
  --bg-secondary: #2d1419;
  --bg-accent: #4a1f2a;
  
  --text-primary: #faf5f0;
  --text-secondary: #d4b5a8;
  --text-muted: #a8867b;
  
  --accent-gold: #d4af37;
  --accent-crimson: #8b0000;
  --accent-burgundy: #5c0f1f;
}

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

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

/* Header */
.site-header {
  background: linear-gradient(to bottom, rgba(26, 10, 15, 0.98), rgba(26, 10, 15, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-gold);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.site-logo a:hover {
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  transform: scale(1.03);
}

.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: 1.05rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 3px;
}

.site-nav a:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.section.head {
  padding: 9rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-accent) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation: luxuryGlow 8s ease-in-out infinite alternate;
}

@keyframes luxuryGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  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: 900px;
  margin: 0 auto;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

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

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

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--accent-gold);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

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

/* Footer */
.footer {
  background: linear-gradient(to top, var(--bg-secondary), var(--bg-primary));
  border-top: 2px solid var(--accent-gold);
  padding: 4rem 0 1.5rem;
  margin-top: 6rem;
}

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

.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;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--accent-burgundy);
}

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  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-gold);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
