.navHeader {
  position: relative;
  color: white;
}

/* Background image fills header */
.header-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation bar at the top */
.horizontalNavigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.horizontalNavigation ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.5);
}

.horizontalNavigation a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.horizontalNavigation a:hover {
  color: #ffd700;
}

#centerColumn {
  position: absolute;
  top: 100px; /* moves it below the nav bar */
  right: 600px; /* space from right edge */
  width: 15%; /* controls how wide the text block is */
  color: rgb(0, 0, 0);
  text-align: left;
  z-index: 2; /* ensures it's above the image */
}
/* Position text on the right-hand side above the image */
#rightColumn {
  position: absolute;
  top: 100px; /* moves it below the nav bar */
  right: 50px; /* space from right edge */
  width: 15%; /* controls how wide the text block is */
  color: rgb(0, 0, 0);
  text-align: left;
  z-index: 2; /* ensures it's above the image */
}

#rightColumn h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#rightColumn p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Background image behind everything */
.header-bg {
    position: absolute; /* or fixed if you want it to stay on scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* full viewport height */
    object-fit: cover;
    z-index: -1; /* behind everything */
}

.valuesPage {
    position: relative; /* now can sit on top */
    z-index: 1;
    max-width: 900px;
    margin: 150px auto 50px; /* spacing from top of viewport */
    padding: 40px;
    background-color: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 10px;
    text-align: center;
}


.valuesPage h1, .valuesPage h2 {
  margin-bottom: 15px;
}

.valuesPage p {
  line-height: 1.6;
  margin-bottom: 25px;
}
