/* Call-to-action button: green sampled from the headshot backdrop */
#hero_button {
  font-weight: 700;
  --bs-btn-bg: #84a242;
  --bs-btn-border-color: #84a242;
  --bs-btn-hover-bg: #53771d;
  --bs-btn-hover-border-color: #53771d;
  --bs-btn-active-bg: #53771d;
  --bs-btn-active-border-color: #53771d;
}

/* Hero subtitle: monospace "coding" face for the animated typing line */
#hero_subtitle {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono",
    Menlo, Consolas, "Liberation Mono", monospace;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #53771d;
}

/* Blinking caret after the typed word */
#hero_cursor {
  font-weight: 300;
  animation: hero-cursor-blink 1s step-end infinite;
}
@keyframes hero-cursor-blink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  #hero_cursor { animation: none; }
}
