.vhs-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Height is now controlled by Elementor responsive slider control */
}

.vhs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vhs-hero__bgslide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}

.vhs-hero__bgslide--active {
  opacity: 1;
}

/* NEW: Overlay layer between BG and Content */
.vhs-hero__overlaylayer {
  position: absolute;
  inset: 0;
  z-index: 2; /* above bg */
  background-color: rgba(0,0,0,0.35);
  opacity: 0.45;
  pointer-events: none;
}

.vhs-hero__overlay {
  position: relative;
  z-index: 3; /* above overlay */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vhs-hero__content {
  max-width: 1200px;
  width: 100%;
}

.vhs-hero__imagewrap {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}

.vhs-hero__image {
  display: block;
}

.vhs-hero__bigtitle {
  line-height: 1.05;
}

.vhs-hero__smalltitle {
  margin-top: 12px;
}

/* Bullets */
.vhs-hero__bullets {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  gap: 10px;
  padding: 0 18px;
}
.vhs-hero__bullets--left { justify-content: flex-start; }
.vhs-hero__bullets--center { justify-content: center; }
.vhs-hero__bullets--right { justify-content: flex-end; }

.vhs-hero__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
}
.vhs-hero__bullet.is-active {
  background: rgba(255,255,255,0.95);
}

/* Content Fade-Up Animation (50px from bottom, opacity 0 -> 1) */
.vhs-anim {
  opacity: 1;
  transform: translateY(0);
}

.vhs-anim.is-entering {
  opacity: 0;
  transform: translateY(50px);
}

.vhs-anim.is-entering.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}
