.hero {
  min-height: 110vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../img/hero.jpeg") center / cover no-repeat;
  padding-top: var(--navbar-height);
  padding-bottom: 25vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 102%;
  background: linear-gradient(
    180deg,
    rgba(248, 248, 248, 0) 0%,
    rgba(248, 248, 248, 0) 55%,
    rgba(248, 248, 248, 0.04) 65%,
    rgba(248, 248, 248, 0.1) 72%,
    rgba(248, 248, 248, 0.2) 78%,
    rgba(248, 248, 248, 0.38) 83%,
    rgba(248, 248, 248, 0.6) 88%,
    rgba(248, 248, 248, 0.82) 92%,
    var(--color-web-background) 96%
  );
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.hero-title {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-logo);
  font-size: 5vw;
  line-height: 0.6;
  text-transform: uppercase;
  color: var(--color-web-background);
  text-shadow: 0 0.2vw 0.8vw rgba(29, 29, 27, 0.6);
}

.hero-subtitle {
  position: relative;
  margin: 0;
  font-size: 1.8vw;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary-foreground);
  text-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.85), 0 0.2vw 0.5vw rgba(0, 0, 0, 0.95);
}

.hero-logo {
  position: relative;
  width: 14vw;
  height: auto;
}

.hero-separator {
  height: 3vw;
}
