/* ========================================
   SkeeterLab — style.css
   ======================================== */

:root {
  --bg: #0a0a0f;
  --bg-light: #12121a;
  --text: #e0e0e0;
  --text-bright: #ffffff;
  --accent: #00f0ff;
  --accent-dim: rgba(0, 240, 255, 0.15);
  --accent-glow: rgba(0, 240, 255, 0.4);
  --font-logo: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Particle canvas — fixed behind everything */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo-text {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--text-bright);
  letter-spacing: 0.05em;
  text-shadow:
    0 0 20px var(--accent-glow),
    0 0 60px rgba(0, 240, 255, 0.2),
    0 0 120px rgba(0, 240, 255, 0.1);
  animation: logo-pulse 4s ease-in-out infinite alternate;
}

@keyframes logo-pulse {
  from { text-shadow: 0 0 20px var(--accent-glow), 0 0 60px rgba(0, 240, 255, 0.2), 0 0 120px rgba(0, 240, 255, 0.1); }
  to   { text-shadow: 0 0 30px var(--accent-glow), 0 0 80px rgba(0, 240, 255, 0.3), 0 0 160px rgba(0, 240, 255, 0.15); }
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: var(--text);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fade-up 1s ease 0.5s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Section Titles
   ======================================== */

.section-title {
  font-family: var(--font-logo);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

/* ========================================
   Cards — What We Do
   ======================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.08), inset 0 0 30px rgba(0, 240, 255, 0.03);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ========================================
   About
   ======================================== */

.about-content {
  max-width: 640px;
}

.founder h3 {
  font-family: var(--font-logo);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.founder .role {
  font-weight: 400;
  color: var(--accent);
  font-size: 0.9rem;
}

.founder p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.team-blurb p {
  font-size: 1rem;
  color: var(--text);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================
   Contact
   ======================================== */

.contact-content {
  text-align: center;
  padding: 4rem 0;
}

.contact-content .section-title {
  margin-bottom: 1.5rem;
}

.contact-email {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-email:hover {
  border-bottom-color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.contact-hours {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ========================================
   Scroll Fade-In
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}
