/* Template 38 - Electric Lime & Charcoal */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;900&family=Roboto+Condensed:wght@400;700&display=swap");

:root {
  --lime: #c6ff00;
  --lime-dark: #aeea00;
  --charcoal: #212121;
  --charcoal-light: #424242;
  --electric: #76ff03;
  --white: #ffffff;
  --gray: #9e9e9e;
}

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

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

body {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(198, 255, 0, 0.05) 25%,
      rgba(198, 255, 0, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(198, 255, 0, 0.05) 75%,
      rgba(198, 255, 0, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(198, 255, 0, 0.05) 25%,
      rgba(198, 255, 0, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(198, 255, 0, 0.05) 75%,
      rgba(198, 255, 0, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  background: var(--charcoal-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(198, 255, 0, 0.3);
  border-bottom: 2px solid var(--lime);
}

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

.site-logo a {
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--lime);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(198, 255, 0, 0.5);
}

.site-logo a:hover {
  text-shadow: 0 0 20px rgba(198, 255, 0, 0.8);
  letter-spacing: 5px;
}

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

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-right: 1px solid var(--charcoal);
  background: var(--charcoal-light);
}

.site-nav a:hover {
  background: var(--lime);
  color: var(--charcoal);
  box-shadow: 0 0 15px rgba(198, 255, 0, 0.5);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 255, 0, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.section.head h1 {
  font-family: "Exo 2", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(198, 255, 0, 0.6);
  position: relative;
  z-index: 1;
  animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(198, 255, 0, 0.6);
  }
  50% {
    text-shadow: 0 0 30px rgba(198, 255, 0, 0.9), 0 0 40px rgba(198, 255, 0, 0.5);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: "Exo 2", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.section header h2::before {
  content: "//";
  position: absolute;
  left: -40px;
  color: var(--electric);
  opacity: 0.5;
}

.section header h2::after {
  content: "//";
  position: absolute;
  right: -40px;
  color: var(--electric);
  opacity: 0.5;
}

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

/* Footer */
.footer {
  background: var(--charcoal-light);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  border-top: 2px solid var(--lime);
  box-shadow: 0 -5px 20px rgba(198, 255, 0, 0.2);
}

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

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

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

.footer-links a:hover {
  color: var(--lime);
  text-shadow: 0 0 10px rgba(198, 255, 0, 0.5);
}

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

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.6s 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(--lime);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
