@import "theme.css";

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.92;
}

.hero-inner {
  max-width: 64rem;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.hero-logo {
  height: 2.5rem;
  width: fit-content;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 40rem;
}

.hero-text {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: rgb(255 255 255 / 0.85);
  max-width: 34rem;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-on-dark-solid {
  background: #fff;
  color: hsl(var(--foreground));
}

.btn-on-dark-solid:hover {
  opacity: 0.9;
}

.btn-on-dark-outline {
  background: transparent;
  border-color: rgb(255 255 255 / 0.4);
  color: #fff;
}

.btn-on-dark-outline:hover {
  background: rgb(255 255 255 / 0.1);
}
