/* Hero Section Styles */
.hero {
  height: 100vh;
  background-image: url(../startbg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-textbg {
  background: black;
  padding: 1rem;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
}