/* Template 70 - Midnight Crimson Drama */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Archivo:wght@300;400;500;600;700&display=swap");

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #15151f;
  --accent-1: #dc143c;
  --accent-2: #ff1744;
  --accent-3: #b71c1c;
  --text-primary: #f0f0f5;
  --text-secondary: #b8b8c8;
  --text-muted: #7a7a8f;
}

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

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

body {
  font-family: "Archivo", sans-serif;
  line-height: 1.6;
  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: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(220, 20, 60, 0.03) 2px,
      rgba(220, 20, 60, 0.03) 4px
    ), radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

.site-header {
  background: var(--bg-secondary);
  border-bottom: 3px solid var(--accent-1);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
}

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

.site-logo a {
  font-family: "Teko", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.site-logo a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 30px rgba(255, 23, 68, 0.7);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.7rem 1.5rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.site-nav a:hover {
  color: var(--accent-1);
  border: 2px solid var(--accent-1);
  background: rgba(220, 20, 60, 0.05);
}

.section.head {
  padding: 9rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "Teko", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: crimsonPulse 3s ease-in-out infinite;
  line-height: 1.1;
}

@keyframes crimsonPulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(220, 20, 60, 0.6), 0 0 60px rgba(220, 20, 60, 0.3);
  }
}

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

.section {
  padding: 6rem 0;
}

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

.section header h2 {
  font-family: "Teko", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
}

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

.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--accent-1);
  margin-top: 6rem;
  box-shadow: 0 -8px 30px rgba(220, 20, 60, 0.15);
}

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

.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: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--accent-1);
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  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: 2rem;
  color: var(--accent-1);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
