/* Template 6 - Crimson Executive */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Raleway:wght@400;500;600;700;800&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  --gradient-2: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  --gradient-3: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  --gradient-4: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  --gradient-5: linear-gradient(135deg, #450a0a 0%, #7f1d1d 100%);

  --bg-primary: #0a0404;
  --bg-secondary: #1a0b0b;
  --glass-bg: rgba(153, 27, 27, 0.1);
  --glass-border: rgba(220, 38, 38, 0.2);

  --text-primary: #fef2f2;
  --text-secondary: #fecaca;
  --text-muted: #fca5a5;
}

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

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

body {
  font-family: "Montserrat", 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: radial-gradient(ellipse at 50% 0%, rgba(153, 27, 27, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(127, 29, 29, 0.15) 0%, transparent 50%);
  animation: redPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes redPulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

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

/* Header */
.site-header {
  background: rgba(10, 4, 4, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--glass-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

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

.site-logo a {
  font-family: "Raleway", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #dc2626;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-logo a:hover {
  color: #ef4444;
  text-shadow: 0 0 25px rgba(220, 38, 38, 0.6);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.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;
  position: relative;
  padding-bottom: 5px;
}

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

.site-nav a:hover {
  color: #dc2626;
}

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

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

.section.head h1 {
  font-family: "Raleway", sans-serif;
  font-size: 4.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-shadow: 0 0 60px rgba(220, 38, 38, 0.4);
  animation: powerFade 1s ease;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@keyframes powerFade {
  from {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  animation: powerFade 1s ease 0.2s backwards;
}

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

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

.section header h2 {
  font-family: "Raleway", sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #dc2626;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--glass-border);
  padding: 3.5rem 0 1.5rem;
  margin-top: 5rem;
}

.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;
}

.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;
}

.footer-links a:hover {
  color: #dc2626;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px 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: #fef2f2;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
