/* Template 60 - Lime Citrus */
@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:wght@300;400;600;700&display=swap");

:root {
  --lime: #c0ff00;
  --citrus: #a8e000;
  --green: #7ab800;
  --dark-lime: #4a7c00;
  --charcoal: #1a1a1a;
  --off-black: #0d0d0d;

  --text-primary: #ffffff;
  --text-secondary: #c0ff00;
  --text-muted: #a8e000;
}

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

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

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--off-black);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(192, 255, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 224, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: citrusShift 8s ease-in-out infinite;
}

@keyframes citrusShift {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

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

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

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

.site-logo a {
  font-family: "Righteous", cursive;
  font-size: 2rem;
  color: var(--lime);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(192, 255, 0, 0.8);
  transition: all 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-logo a:hover {
  color: var(--citrus);
  transform: scale(1.08) rotate(-2deg);
  text-shadow: 0 0 30px rgba(192, 255, 0, 1);
}

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

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  background: rgba(192, 255, 0, 0.1);
}

.site-nav a:hover {
  color: var(--charcoal);
  background: var(--lime);
  box-shadow: 0 0 15px rgba(192, 255, 0, 0.6);
  transform: translateY(-2px);
}

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

.section.head h1 {
  font-family: "Righteous", cursive;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(192, 255, 0, 0.8), 0 0 60px rgba(168, 224, 0, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: citrusGlow 2s ease-in-out infinite alternate;
}

@keyframes citrusGlow {
  0% {
    text-shadow: 0 0 30px rgba(192, 255, 0, 0.8), 0 0 60px rgba(168, 224, 0, 0.5);
  }
  100% {
    text-shadow: 0 0 40px rgba(192, 255, 0, 1), 0 0 80px rgba(168, 224, 0, 0.8);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-primary);
  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: "Righteous", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--citrus);
  text-shadow: 0 0 20px rgba(168, 224, 0, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/* Footer */
.footer {
  background: var(--charcoal);
  border-top: 3px solid var(--lime);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 0 30px rgba(192, 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(--text-primary);
  line-height: 1.8;
}

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

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

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

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

.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: var(--lime);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
