    :root {
      --bg-color: #121212;
      --text-color: #f0f0f0;
      --accent-color: #ff3c00;
    }

    body {
      margin: 0;
      font-family: 'Permanent Marker', cursive;
      background-color: var(--bg-color);
      color: var(--text-color);
      scroll-behavior: smooth;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #1e1e1e;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 1.8rem;
      color: var(--accent-color);
    }

    .logo img {
      display: block;
      height: 80px;         /* gewünschte Höhe, z. B. 60px */
      width: auto;          /* proportional skalieren */
    }

    @media (max-width: 600px) {
        .logo img {
        height: 40px;       /* kleineres Logo auf Mobilgeräten */
      }
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      color: var(--text-color);
      text-decoration: none;
      font-size: 1rem;
    }

    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background-color: #121212;
      border-bottom: 1px solid #ccc;
    }

    .hero img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      animation: fadeIn 2s ease-in;
    }

    .hero-text {
      max-width: 768px;
      margin: 10px;
      animation: slideUp 1.5s ease-out;
      text-align: center;
    }

    .hero-text h2 {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .hero-text p {
      font-size: 1.1em;
      line-height: 1.6;
      margin-top: 20px; 
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--text-color);
      margin: 4px;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background-color: #1e1e1e;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 8px;   
      }

      nav.active {
        display: flex;
      }

      .hero {
        flex-direction: column;
      }

      .burger {
        display: flex;
      }

      .bild-container {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }

    }

    @media (max-width: 480px) {
      .bild-container {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    section {
      padding: 4rem 2rem;
      border-bottom: 1px solid #333;

      display: flex;
      flex-direction: column;    /* spaltenweise anordnen */
      justify-content: center;   /* vertikal zentrieren */
      align-items: center; 
    }

    h1, h2 {
      color: var(--accent-color);
    }

    p {
      max-width: clamp(300px, 50vw, 800px);
      margin: 0 auto;
      text-align: center;
    }

    #slideshow {
      width: 100%;
      max-width: 800px;
      aspect-ratio: 3 / 2;
      background-color: var(--bg-color);
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border-radius: 8px;
      margin-block: 2rem; /* Abstand oben und unten */
    }

    #slideshow img {
      max-width: 100%;
      max-height: 100%;
      position: absolute;
      object-fit: contain;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    #slideshow img.active {
      opacity: 1;
      z-index: 1;
    }

    .bildergalerie {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .bild-container {
      flex: 1 1 calc(33.333% - 20px);
      max-width: calc(33.333% - 20px);
      box-sizing: border-box;
    }

    .bild-container.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .bild-container img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #aaa;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

