/* Template 35 - Cherry Red Bold */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --accent-red: #dc2626;
  --accent-pink: #f43f5e;
  --text-primary: #fafafa;
  --text-secondary: #d4d4d4;
  --text-muted: #737373;
}

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

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

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

/* Header - Bold centered logo */
.site-header {
  background: var(--bg-secondary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--accent-red);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

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

.site-logo a {
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent-red);
  text-decoration: none;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.site-logo a:hover {
  color: var(--accent-pink);
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  transform: scale(1.05);
}

.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: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: var(--accent-red);
  transform: translateY(-2px);
}

/* Hero Section - Bold centered */
.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "Bebas Neue", cursive;
  font-size: 5.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.8), 0 0 60px rgba(244, 63, 94, 0.6);
  }
}

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

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

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

.section header h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

/* Footer - Bold with red accent */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--accent-red);
  margin-top: 5rem;
  box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.3);
}

.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-secondary);
  line-height: 1.8;
}

.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: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(220, 38, 38, 0.3);
}

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

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

.fade-in {
  opacity: 0;
  animation: slideInFade 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.9rem;
  color: var(--accent-red);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Bebas Neue", cursive;
  text-transform: uppercase;
  letter-spacing: 2px;
}
