.hero {
  min-height: 110vh;
  padding-top: 100px;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background-image: url("../../images/hero/hero-main-site.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.55)
  );
}

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-subtitle {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(4rem, 6vw, 8rem);
  line-height: 1;
  margin: 1rem 0;
}

.hero-text {
  color: var(--color-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons a {
  width: fit-content;
}

/* DECORATIVE LINE */

.hero-line {
  width: 120px;
  height: 2px;
  background: var(--color-gold);
  margin: 2rem 0;
}
.hero-title {
  font-family: var(--font-title);

  font-size: clamp(4rem, 6vw, 8rem);

  line-height: 1;

  margin: 1rem 0;
}

.hero-text {
  color: var(--color-light);

  font-size: 1.1rem;

  max-width: 600px;

  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons a {
  width: fit-content;
}

.hero-line {
  width: 120px;
  height: 2px;

  background: var(--color-gold);

  margin: 2rem 0;
}
