/* ============================================
   Hero Section: Full viewport with canvas behind content
   ============================================ */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--nav-height) 2rem 2rem;
  background: var(--color-bg);
  transition: var(--transition-theme);
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('../assets/images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: normal;
  filter: saturate(1.2) contrast(1.05);
}

[data-theme="light"] .hero__bg-image {
  opacity: 0.35;
  filter: saturate(1.4) brightness(0.95) contrast(1.2);
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero__name {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 100;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: rgba(232, 232, 239, 0.55);
}

[data-theme="light"] .hero__name {
  color: var(--color-text);
}

.hero__title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-theme="light"] .hero__title {
  color: #2d3a47;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  font-style: italic;
}

[data-theme="light"] .hero__tagline {
  color: #2d3a47;
}
