.parallax-hero {
  /* Set a fixed height or min-height */
  min-height: 100vh;
  
  /* Path to your background image */
  background-image: url("../assets/img/betsy-with-constituent.jpg");
  
  /* Enable the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* Optional: dark overlay for better text readability */
  position: relative;
}

/* Optional overlay mask */
.parallax-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 40% black tint */
  z-index: 1;
}

/* Ensure container content sits above the overlay */
.parallax-hero .container {
  position: relative;
  z-index: 2;
}