/* ==========================================================================
   Whit Lincoln Portfolio - Top-Left White Title Layout
   ========================================================================== */

/* Main Viewport Container */
.app-viewport {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  padding: 4rem;
  z-index: 2;
  pointer-events: none; /* Allows pointer to hit document for mousemove */
}

/* Top Left Title Container */
.top-left-hero {
  position: absolute;
  top: 4rem;
  left: 4rem;
  pointer-events: auto;
}

.hero-title-big {
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 768px) {
  .app-viewport { padding: 2rem; }
  .top-left-hero { top: 2.5rem; left: 2.5rem; }
  .hero-title-big { font-size: 3rem; }
}

.white-text {
  color: #ffffff;
  display: inline;
}

/* Crisp White Cursor */
.typing-cursor {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  animation: blink 0.85s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
