body {
  margin: 0;
  background-color: #000000; /* dunkler Hintergrund */
  font-family: 'Montserrat', sans-serif;
  color: #d9d9d9; /* hellgraue Schrift */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  position: relative;
  text-align: center;
}

.hero-img {
  width: 50vw;           /* ca. 30% kleiner als volle Breite */
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.overlay {
  position: absolute;
  bottom: 12px;          /* Text nah an unteren Bildrand */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.overlay h1 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: #f0f0f0;
}

.overlay p {
  font-size: 1rem;
  margin: 2px 0 0 0;
  color: #bfbfbf;
}

@media (max-width: 768px) {
  .hero-img {
    width: 95vw;  /* fast ganze Breite auf Mobile */
  }
  .overlay h1 { font-size: 1.2rem; }
  .overlay p { font-size: 0.9rem; }
}