    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      background: #faf9f9;
      color: #ffffff;
    }

    /* NAV */
    nav {
      display: flex;
      align-items: right;
      justify-content: space-between;
      padding: 1.2rem 4rem;
      background: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
      position: absolute;
      width: 100%;
      z-index: 10;
    }
    nav div { margin-left: auto; }
    nav a {
      color: #e5e5e5;
      text-decoration: none;
      margin-left: 1.4rem;
      font-size: .95rem;
      transition: color .2s;
    }
    nav a:hover { color: #fff; }

    /* DROPDOWN */
    .dropdown { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + .5rem);
      right: 0;
      list-style: none;
      background: rgba(20,20,20,.95);
      border-radius: 6px;
      min-width: 160px;
      padding: .4rem 0;
      z-index: 100;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li a {
      display: block;
      padding: .55rem 1.1rem;
      margin: 0;
      font-size: .9rem;
      color: #e5e5e5;
      white-space: nowrap;
    }
    .dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,.08); }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 4rem;
      overflow: hidden;
    }

    /* Slideshow slides */
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: heroFade 84s infinite;
    }
    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,.65) 10%, transparent),
                  linear-gradient(to top,   rgba(0,0,0,.3)  2%, transparent);
    }

    .hero-slide:nth-child(1) { background-image: url('/img/sa_73_IMG_4345.jpg'); animation-delay:  0s; }
    .hero-slide:nth-child(2) { background-image: url('/img/IMG_4462.jpg');        animation-delay: 12s; }
    .hero-slide:nth-child(3) { background-image: url('/img/IMG_4464.jpg');        animation-delay: 24s; }
    .hero-slide:nth-child(4) { background-image: url('/img/sa_07_IMG_4192.jpg'); animation-delay: 36s; }
    .hero-slide:nth-child(5) { background-image: url('/img/sa_21_IMG_4220.jpg'); animation-delay: 48s; }
    .hero-slide:nth-child(6) { background-image: url('/img/sa_36_IMG_4252.jpg'); animation-delay: 60s; }
    .hero-slide:nth-child(7) { background-image: url('/img/sa_39_IMG_4258.jpg'); animation-delay: 72s; }

    @keyframes heroFade {
      0%      { opacity: 0; }
      2.38%   { opacity: 1; }   /* nach 2s: eingeblendet */
      14.29%  { opacity: 1; }   /* nach 12s: noch sichtbar */
      16.67%  { opacity: 0; }   /* nach 14s: ausgeblendet */
      100%    { opacity: 0; }
    }

    .hero-content { position: relative; z-index: 1; max-width: 540px; }
    .hero-content h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
    .hero-content p  { font-size: 1.1rem; color: #ddd; margin-bottom: 1.8rem; line-height: 1.6; }
    .btn-group { display: flex; gap: .8rem; flex-wrap: wrap; }
    .btn {
      padding: .7rem 1.8rem;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: opacity .2s;
    }
    .btn:hover { opacity: .85; }
    .btn-primary { background: #fff; color: #000; }
    .btn-secondary { background: rgba(109,109,110,.7); color: #fff; }

    /* SECTION */
    .section { padding: 3rem 4rem; }
    .section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.2rem; }

    /* CARD ROW */
    .card-row {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      padding-bottom: .5rem;
      scrollbar-width: thin;
      scrollbar-color: #555 transparent;
    }
    .card {
      flex: 0 0 180px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      transition: transform .25s;
    }
    .card:hover { transform: scale(1.07); z-index: 1; }
    .card img { width: 100%; display: block; }
    .card-label {
      padding: .5rem .7rem;
      background: #222;
      font-size: .8rem;
      color: #ccc;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* FOOTER */
    footer {
      padding: 3rem 4rem;
      color: #757575;
      font-size: .85rem;
      border-top: 1px solid #333;
    }
    footer a { color: #757575; text-decoration: none; margin-right: 1.2rem; }
    footer a:hover { text-decoration: underline; }
    footer p { margin-top: 1rem; }
