/* Template 13 - Art Deco Elegance */
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --black: #0a0a0a;
  --cream: #f5f0e8;
  --bronze: #cd7f32;
  --silver: #c0c0c0;

  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --text-primary: #f5f0e8;
  --text-secondary: #d4af37;
  --text-muted: #9b8b6f;
}

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(212, 175, 55, 0.02) 25%,
      rgba(212, 175, 55, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(212, 175, 55, 0.02) 75%,
      rgba(212, 175, 55, 0.02) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(212, 175, 55, 0.02) 25%,
      rgba(212, 175, 55, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(212, 175, 55, 0.02) 75%,
      rgba(212, 175, 55, 0.02) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Art Deco Style */
.site-header {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.site-logo a {
  font-family: "Abril Fatface", cursive;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.site-logo a:hover {
  color: var(--cream);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  letter-spacing: 6px;
}

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

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  padding-bottom: 0.5rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

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

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

/* Hero Section */
.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--black) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  margin: 3rem 0;
}

.section.head::before,
.section.head::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.section.head::before {
  top: -150px;
  left: -150px;
  animation: rotateCircle 30s linear infinite;
}

.section.head::after {
  bottom: -150px;
  right: -150px;
  animation: rotateCircle 40s linear infinite reverse;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section.head h1 {
  font-family: "Abril Fatface", cursive;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-primary);
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 2px;
}

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

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

.section header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section header h2 {
  font-family: "Abril Fatface", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 6px;
}

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

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--black) 100%);
  border-top: 3px solid var(--gold);
  padding: 4rem 0 1.5rem;
  margin-top: 6rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.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: 2;
  font-weight: 300;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

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

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s 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.8rem;
  color: var(--gold);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
