/* HERO */
.hero {
  min-height: 450px;
  height: 450px;
  background:
    url("/assets/img/hero-bike.jpg") center/cover no-repeat,
    #e6c893;
  border-bottom: 4px solid #e4c89c;
  position: relative;
  z-index: 8;
}

.hero-image-div {
  background: rgba(255, 255, 255, 0.55);
  position: absolute;
  inset: 0;
}
.front-image {
  width: 100%;
  height: 100%;
  /* position: absolute;  */
  /* opacity: 0.3; */
  object-fit: cover;
  top: 50px;
  left: 50px;
  z-index: 9999;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0) 55%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.hero-headline {
  color: #fff;
  font-weight: 900;
  line-height: 0.95;
  font-size: clamp(28px, 6vw, 64px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.hero .btn {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.welcome {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
