main {
  position: relative;
  margin-top: 80px;
  display: block;
  z-index: 1;
}

img.shadow-light {
  opacity: 0.2; /* adjust 0–1 */
}

.mycontent {
  z-index: 2; /* ensures text is above overlay */
  padding: 1rem;
}

/* Hero section with image */
.bridge-hero {
  position: fixed;
  top: 55px;
  pointer-events: none;
  /*
  top: var(--header1-height); */ /* always below header1 */
  width: 100vw;
  height: 100vh;       /* Fallback for older browsers */
  overflow: hidden;
  z-index: 0;
}

.bridge_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh; /* Safe viewport height on mobile */
  height: 100vh;       /* Fallback for older browsers */
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 0;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20vh;
  z-index: 1;
}

@keyframes fadeInOverlay {
  to {
    opacity: 1;
  }
}

.bridge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bridge-tagline {
  position: relative;
  z-index: 2; /* Above gradient and image */
  color: #fff; /* Or whatever contrasts best with your overlay */
  text-shadow: 0 1px 2px rgba(0,0,0,0.6); /* Optional for clarity */
  padding: 1rem 2rem; /* Adjust for spacing */
}

.bridge-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  pointer-events: none; /* optional if you want it non-interactive */
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px #000;
}

ul.bulleted {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

ul.bulleted li::before {
  content: none; /* Optional: suppress emoji if you switch back */
}

ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}
