html, body {
  height: 100%;
  overflow: hidden;
}

.hero {
  height: 100svh;
  background-image: url("../images/cover.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-position: left 63%;
  font-family: 'Orbitron', sans-serif;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-name {
  position: absolute;
  bottom: 90px;
  right: 24px;
  font-size: 6.5rem;
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 1px;
  text-align: right;
  line-height: 1.0;
}

.hero-tagline {
  position: absolute;
  bottom: 32px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-align: right;
}

.tagline-break {
  display: none;
}

@media (max-width: 700px) {
    .hero-name {
        right: 14px;
        bottom: 88px;
        font-size: 3.5rem;
        line-height: 1.0;
    }

    .hero-tagline {
        font-size: 1.0rem;
        right: 14px;
        bottom: 24px;
        max-width: 90vw;
        text-align: right;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); 
    }

    .tagline-break {
        display: inline;
    }

    .hero {
        background-position: 10% center;
    }
}