* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-cta {
  position: absolute;
  top: 45%;
  left:75%;
  transform: translate(-50%, -50%);
  padding: 20px 44px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  z-index: 5;
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .overlay-cta {
    padding: 18px 36px;
    font-size: 16px;
  }

}