/* coreyiscorey.com — homepage v1.
   Centered Anton block-letter name + outlined "Music Visualizer" button.
   Dark theme inherits coreyscherrer.com's --color-cs-dark-* tokens. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-cs-dark-bg);
  color: var(--color-cs-dark-text-primary);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100svh; /* mobile-correct viewport unit */
}

.stage {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3rem);
  padding: 2rem 1.25rem;
  text-align: center;
}

/* Big block-letter name.
   Anton is a tall, condensed display sans; tight tracking makes it read as
   one solid block. Scales fluidly from phone to desktop. */
.name {
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-weight: 400; /* Anton ships single-weight */
  font-size: clamp(3.5rem, 14vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--color-cs-dark-text-primary);
  /* Subtle glow keeps it from feeling flat against the near-black bg */
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.04);
}

/* Outlined Music Visualizer button. Small, white outline, no fill. */
.project-btn {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  background: transparent;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.project-btn:hover,
.project-btn:focus-visible {
  color: var(--color-cs-dark-bg);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.project-btn:focus-visible {
  outline: 2px solid var(--color-cs-dark-accent-cyan);
  outline-offset: 4px;
}

.project-btn:active {
  transform: translateY(0);
}
