﻿.titelimg-image {
    position: relative;
}
.titelimg-image img {
    display: block;
    width: 100%;
    /* max-width: 1200px;   corresponds to max height of 450px */
    margin: 0 auto;
}
.titelimg-image h1 {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
}	
/*  Text mit Schatten */
.text-shadow {
    text-shadow: 0.1em 0.1em 0.05em #333;
}
.schriftplus {
  font-size: 1.1em;
}
.schriftminus {
  font-size: 0.9em;
}

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f5f5f5;
    }
    .hero-container {
      position: relative;
      width: 100%;
      max-height: 400px;
      overflow: hidden;
    }
    .hero-image {
      width: 100%;
      height: 40vw;
      min-height: 220px;
      max-height: 400px;
      object-fit: cover;
      display: block;
    }
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
      width: 90%;
      max-width: 700px;
    }
    .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 0 0 0.5em 0;
      background: tran;
      display: inline-block;
      padding: 0.2em 0.8em;
      border-radius: 8px;
    }
    .hero-subtitle {
      font-size: 1.3rem;
      font-weight: 500;
      margin: 0;
      background: transparent;
      display: inline-block;
      padding: 0.2em 0.8em;
      border-radius: 8px;
    }
    @media (max-width: 600px) {
      .hero-image {
        height: 40vw;
        min-height: 120px;
        max-height: 200px;
      }
      .hero-title {
        font-size: 1.3rem;
      }
      .hero-subtitle {
        font-size: 1rem;
      }
    }