html
{
  overflow-y: scroll;
}

/* Ensure full height layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Flex wrapper for layout */
.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content takes all available space */
.main-content {
  flex: 1;
}


.hero-banner {
  position: relative;
  width: 100%;
  height: 400px; /* adjust height here */
  overflow: hidden;
  margin-top: 0;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* optional overlay */
  padding: 1rem 2rem;
  border-radius: 10px;
}
