/* Template 9 - Royal Luxury / Gold Accent */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --royal-black: #0a0a0a;
  --royal-charcoal: #1a1a1a;
  --royal-dark: #252525;
  --royal-gray: #404040;
  --gold-primary: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8860b;
  --cream: #f8f4e8;
  --text-light: #e8e8e8;
  --text-muted: #999999;
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--royal-black);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Royal Luxury Style */
.site-header {
  background: var(--royal-black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gold-dark);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-black), var(--gold-primary), var(--gold-light), var(--gold-primary), var(--royal-black));
}

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

.site-logo a {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
}

.site-logo a::before,
.site-logo a::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: var(--gold-primary);
  opacity: 0.6;
}

.site-logo a::before {
  left: -1.75rem;
}

.site-logo a::after {
  right: -1.75rem;
}

.site-logo a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid transparent;
}

.site-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--gold-primary);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.site-nav a:hover {
  color: var(--gold-primary);
}

.site-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--royal-charcoal) 0%, var(--royal-black) 100%);
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section.head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section.head h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--cream);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.4;
}

.section.head p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  background: var(--royal-black);
}

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

.section header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--gold-dark);
}

.section header h2::before {
  right: calc(100% + 1.5rem);
}

.section header h2::after {
  left: calc(100% + 1.5rem);
}

.section header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

/* Footer - Royal Style */
.footer {
  background: var(--royal-charcoal);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  border-top: 1px solid var(--gold-dark);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.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(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Animations */
@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: royalFadeIn 0.9s ease forwards;
}

@keyframes royalFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.35s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }

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-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
}
