.hero {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  margin-top: 0;
  z-index: 0;
}

/* Background Image */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay for readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* Centered content but left-constrained */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Headline */
.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* CTA button */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;             /* larger button */
  border-radius: 9999px;
  background: #ff3c3c;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;        /* capitalize */
  letter-spacing: 0.05em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  background: #ff5555;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
  }
  .hero__overlay {
    background: rgba(0, 0, 0, 0.5);
  }
  .hero__content {
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.scroll-indicator:hover { opacity: 1; }

/* The moving dot inside */
.scroll-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  margin-top: 8px;
  animation: scroll-indicator-move 1.6s infinite ease-in-out;
}

@keyframes scroll-indicator-move {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Hide indicator on small screens */
@media (max-height: 600px) {
  .scroll-indicator { display: none; }
}