/* Full-window hero image */
.index-hero {
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title section just below image */
.index-title {
  max-width: 1100px;
  margin: 4rem auto 6rem;
  padding: 0 2rem;
}

.index-title h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 500;
  color: #111827;
}


/* Responsive adjustment */
@media (max-width: 900px) {
  .index-title h1 {
    font-size: 2rem;
  }
}
