/* Fixed Background Image for Main Page */
body {
  background-image: url('../../images/BkgVertical.png');
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Optional: Add overlay for better text readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}

/* Ensure main content area has proper layering */
#wrapper {
  position: relative;
  z-index: 1;
}
