/**
 * Design Tokens / SCSS Variables
 * Gebaseerd op Groef branding
 */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  height: 90vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}
.hero .hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 400px;
  height: 100%;
  padding: 0 40px;
  justify-content: flex-start;
}
.hero__content {
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  color: #ffffff;
}
.hero__title {
  font-size: 7rem;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.hero__description {
  font-size: 19px;
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.5;
  font-weight: 400;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  border: solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
  font-weight: 600;
  padding: 16px 40px;
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
  gap: 10px;
}
.hero__cta:hover {
  background: white;
  color: black;
}
.hero__cta:hover a {
  color: black;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    height: auto;
  }
  .hero__container {
    height: auto;
    padding: 0 10px;
  }
  .hero__content {
    padding: 32px 16px;
    max-width: 100%;
    border-radius: 10px;
    gap: 18px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__description {
    font-size: 15px;
  }
  .hero__cta {
    font-size: 14px;
    padding: 12px 24px;
  }
}
/*# sourceMappingURL=hero.css.map */
