/* Add background overlay image to homepage */
body.home-page::before {
  content: "";
  position: fixed; /* stays put while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/uploads/2025/11/branch-background.png');
  /* background-image: url('/wp-content/uploads/2025/11/37024E3D-F963-4ACF-AF21-BDBCC24F3286_1_105_c.jpg'); */
  background-repeat: no-repeat;
  background-size: cover; /* scale to fill */
  background-position: top;
  opacity: 0.25; /* adjust transparency */
  z-index: 0; /* behind page elements */
  pointer-events: none; /* doesn't block interactions */
}

/* Make sure the page content stays above the overlay */
body.home-page #page,
body.home-page .site,
body.home-page .bb-page,
body.home-page main {
  position: relative;
  z-index: 1;
}