.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
}

@media (min-width: 600px) {
  .hero-title { font-size: 2.5rem; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 3rem; }
} 