#hero,
.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
    var(--heroimagesmall);
  height: 100%;
  max-height: 540px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#hero .hero-text {
  text-align: center;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--title_preset);
  font-size: clamp(0.75rem, 0.125rem + 2.7778vw, 2rem);
}

#hero .lavishtext {
  font-family: 'Lavishly Yours', cursive;
  letter-spacing: 2px;
  font-size: clamp(1rem, -0.5rem + 6.6667vw, 4rem);
  line-height: 0;
  white-space: nowrap;
  word-spacing: 10px;
}

#hero .spacinginitials {
  letter-spacing: 10px;
}

#hero .regulartext {
  font-family: Zen Maru Gothic, Arial, Helvetica, sans-serif;
  /* font-size: 0.8rem, 50vw, 2rem; */
  line-height: 0.6;
  white-space: nowrap;
}

#hero .hero-text .subtext {
  font-family: Zen Maru Gothic, Arial, Helvetica, sans-serif;
  font-size: clamp(0.5rem, 0rem + 2.2222vw, 1.05rem);
   line-height: 0.6; 
   white-space: nowrap; 
}

#hero .hero-text button {
  border: none;
  border-radius: 25px;
  outline: 0;
  display: inline-block;
  padding: 8px 15px;
  color: black;
  background-color: var(--button_1);
  text-align: center;
  cursor: pointer;
  font-size: clamp(0.5rem, 0rem + 2.2222vw, 1.05rem);
}

#hero .hero-text button:hover {
  background-color: var(--buttonhover_1);
  color: white;
}

#hero .hero-button {
  background-color: #fff;
  border: 0;
  outline: 0;
  padding: 1.5rem 2rem;
  font-size: 4rem;
  box-shadow: 0px 5px 10px var(--hero-box-shadow);
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 5px;
  border-bottom: 4px solid var(--hero-border-bottom);
}
#hero .hero-button:hover {
  box-shadow: 0px 15px 55px 5px var(--hero-box-shadow-hover);
  transform: scale(1.03);
}
#hero .hero-button:active {
  box-shadow: 0px 15px 55px var(--hero-button-active);
  transform: scale(0.98);
}

.smallhero {
  text-align: center;
  display: block;
}

.smallhero p {
  font-size: 12px;
}

@media screen and (min-width: 450px) {
  :root {
    --heroimage: url(/assets/orchidbackground950.webp);
  }
  .smallhero {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  :root {
    --heroimage: url(/assets/orchidbackground.webp);
  }
}
