/* Template 36 - Northern Lights / Aurora */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600&display=swap");

:root {
  --aurora-green: #00ff88;
  --aurora-blue: #0088ff;
  --aurora-purple: #8800ff;
  --aurora-pink: #ff0088;
  --night-sky: #0a0e27;
  --deep-space: #050816;
  --star-white: #e8f4f8;
  --ice-blue: #b8e6f0;
}

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

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

body {
  font-family: "Exo 2", sans-serif;
  line-height: 1.7;
  color: var(--star-white);
  background: var(--deep-space);
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 136, 0.1) 0%,
    rgba(0, 136, 255, 0.1) 33%,
    rgba(136, 0, 255, 0.1) 66%,
    rgba(255, 0, 136, 0.1) 100%
  );
  pointer-events: none;
  z-index: -1;
  animation: auroraFlow 20s ease-in-out infinite;
}

@keyframes auroraFlow {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0) scaleY(1);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-30px) scaleY(1.1);
  }
}

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

/* Header - Ethereal Glow */
.site-header {
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--aurora-blue);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 40px rgba(0, 136, 255, 0.3);
}

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

.site-logo a {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--aurora-green), var(--aurora-blue), var(--aurora-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.4s ease;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5);
  }
}

.site-logo a:hover {
  transform: scale(1.1);
}

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

.site-nav a {
  color: var(--ice-blue);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--aurora-green);
  border: 1px solid var(--aurora-blue);
  background: rgba(0, 136, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Hero Section - Aurora Display */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(0, 136, 255, 0.2) 0%, transparent 70%);
}

.section.head h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 40px rgba(0, 136, 255, 0.8));
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--ice-blue);
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.section header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--aurora-blue), var(--aurora-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Footer - Cosmic Base */
.footer {
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(15px);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--aurora-purple);
  margin-top: 5rem;
  box-shadow: 0 -8px 40px rgba(136, 0, 255, 0.3);
}

.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(--ice-blue);
  line-height: 1.9;
}

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

.footer-links a {
  color: var(--ice-blue);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--aurora-green);
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

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

.copyright a {
  color: var(--ice-blue);
  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.8rem;
  background: linear-gradient(90deg, var(--aurora-green), var(--aurora-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Orbitron", sans-serif;
}
