/* ============================================
   🖤 Global Styles: Sad but functional
============================================ */
body {
  margin: 0;
  padding: 0;
  font-family: 'Cutive Mono', monospace;
  background-color: #0a0a0a;
  color: #e0e0e0;
  text-align: center;
}

.site-header,
.site-main,
.site-footer,
section {
  padding: 2rem;
}

.site-main {
  font-size: 1.1rem;
  line-height: 1.6;
}

section {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   🌸 Typography + Layout
============================================ */
h1 {
  font-size: 2.5rem;
  color: #ff00cc;
  text-shadow: 0 0 5px #ff00cc99;
}

.site-header h1 {
  font-size: 2rem;
  text-shadow: 0 0 5px #ff00cc88;
}

h2 {
  font-size: 1.6rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin: 0.5rem 0;
}

a {
  color: #ff00cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.tagline {
  font-style: italic;
  color: #ffb3ec;
  margin-top: 0.5rem;
}

/* ============================================
   💼 Team Section: Hex-coded emotions
============================================ */
.team-hex {
  max-width: 700px;
  margin: 3rem auto;
  text-align: left;
  font-family: 'Courier New', monospace;
  padding: 0 1rem;
}

.team-hex h2 {
  text-align: center;
  color: #ff00cc;
  margin-bottom: 2rem;
}

.hex-grid {
  display: grid;
  gap: 2rem;
}

.hex-member {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.swatch {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid #444;
  box-shadow: 0 0 5px rgba(255, 0, 204, 0.3);
}

.hex-member p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

.hex-member strong {
  color: #ffb3ec;
  font-size: 1rem;
}

.hex-member span {
  display: block;
  margin-top: 0.25rem;
  color: #888;
  font-size: 0.85rem;
}

/* ============================================
   🧠 LOGO STUFF (she's not well)
============================================ */
:root {
  --main-glow: #66ff99;
  --shadow-glow: #33cc88;
  --deep-glow: #228855;
}

@media (prefers-color-scheme: dark) {
  :root {
    --main-glow: #d39cf6;
    --shadow-glow: #b372e1;
    --deep-glow: #8c52ff;
  }
}

.logo-text {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem;
  color: var(--main-glow);
  text-align: center;
  text-shadow:
    0 0 2px var(--main-glow),
    0 0 5px var(--shadow-glow),
    0 0 10px var(--deep-glow);
  animation: pulseGlow 4s ease-in-out infinite;
  margin: 2rem auto;
  max-width: fit-content;
}

/* ☁️ Gentle pulse on idle */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      0 0 2px var(--main-glow),
      0 0 5px var(--shadow-glow),
      0 0 10px var(--deep-glow);
  }
  50% {
    text-shadow:
      0 0 1px var(--main-glow),
      0 0 3px var(--shadow-glow),
      0 0 6px var(--deep-glow);
  }
}

/* 🌪 Flicker violently on hover */
.logo-text:hover {
  animation: flickerGlitch 0.9s infinite steps(2, end);
}

@keyframes flickerGlitch {
  0%, 3%, 5%, 7%, 10%, 12%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #ff99ff,
      0 0 10px #e76be7,
      0 0 20px #c93cc9,
      0 0 30px #8c52ff;
  }
  1%, 4%, 6%, 9%, 11% {
    opacity: 0.4;
    text-shadow: none;
  }
}

/* ✴️ Offset letter: the broken 'o' */
.offset-letter {
  position: relative;
  display: inline-block;
  top: 0.2em;
  right: -0.1em;
}

/* 🍂 Drop in from above like a digital sigh */
.drop-in {
  animation: oDrop 1.2s ease-out forwards;
}

@keyframes oDrop {
  0% {
    top: -0.6em;
    transform: rotate(-10deg);
  }
  60% {
    top: 0.25em;
    transform: rotate(3deg);
  }
  80% {
    top: 0.15em;
    transform: rotate(-1deg);
  }
  100% {
    top: 0.2em;
    transform: rotate(0deg);
  }
}

/* ============================================
   🫥 Footer glow if you scroll to the bottom
============================================ */
.site-footer {
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
  transition: text-shadow 0.3s ease;
}

.site-footer.glow {
  text-shadow:
    0 0 2px #ff99ff,
    0 0 6px #ff66cc,
    0 0 12px #cc33cc;
}
