/* Template 24 - Steampunk / Victorian Brass */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Crimson+Text:wght@400;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #8b4513 0%, #cd853f 100%);
  --gradient-2: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  --gradient-3: linear-gradient(135deg, #654321 0%, #8b4513 100%);
  --gradient-4: linear-gradient(135deg, #cd853f 0%, #daa520 100%);
  --gradient-5: linear-gradient(135deg, #8b4513 0%, #b8860b 100%);

  --bg-primary: #1a0f0a;
  --bg-secondary: #2d1810;
  --glass-bg: rgba(205, 133, 63, 0.1);
  --glass-border: rgba(184, 134, 11, 0.3);

  --text-primary: #daa520;
  --text-secondary: #cd853f;
  --text-muted: #8b7355;
}

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

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

body {
  font-family: "Crimson Text", serif;
  line-height: 1.8;
  color: var(--text-secondary);
  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: repeating-linear-gradient(
      0deg,
      rgba(184, 134, 11, 0.02) 0px,
      transparent 2px,
      transparent 4px,
      rgba(184, 134, 11, 0.02) 6px
    ), radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Victorian Ornate Style */
.site-header {
  background: linear-gradient(180deg, rgba(45, 24, 16, 0.95) 0%, rgba(26, 15, 10, 0.95) 100%);
  border-top: 4px solid var(--text-primary);
  border-bottom: 4px solid var(--text-primary);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(218, 165, 32, 0.3);
}

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

.site-logo a {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.8);
}

.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: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--text-secondary);
  background: rgba(139, 69, 19, 0.2);
}

.site-nav a:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
  background: rgba(218, 165, 32, 0.2);
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(139, 69, 19, 0.2) 0%, transparent 70%);
}

.section.head h1 {
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 30px rgba(218, 165, 32, 0.5);
  animation: brassPulse 3s ease-in-out infinite alternate;
}

@keyframes brassPulse {
  0% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 30px rgba(218, 165, 32, 0.5);
  }
  100% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 40px rgba(218, 165, 32, 0.7);
  }
}

.section.head p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
}

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

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

.section header h2 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(26, 15, 10, 0.95) 0%, rgba(45, 24, 16, 0.95) 100%);
  border-top: 4px solid var(--text-primary);
  border-bottom: 4px solid var(--text-primary);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.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.8;
  font-size: 1.1rem;
}

.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: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
}

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

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 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.7rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Cinzel", serif;
}
