/* Extracted from index.qmd inline styles */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  position: relative;
  min-height: 100svh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
}

.overlay-text h1 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.overlay-text .cta-button {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  padding: 0.6rem 1.2rem;
  font-size: 1.25rem;
  border-radius: 2rem;
  text-decoration: none;
}
.overlay-text .cta-button:hover {
  background-color: #fff;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 600px) {
  .overlay-text {
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    padding-right: 6%;
  }
  .overlay-text h1 {
    font-size: 2.25rem;
    line-height: 1.15;
  }
  .overlay-text .cta-button {
    padding: 0.8rem 1.2rem;
    font-size: clamp(1.8rem, 4vw, 4rem);
    min-height: 44px;
    border-radius: 1.5rem;
  }
}
