#hero {
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
    position: relative;
  }

  #heroCarousel {
    width: 100%;
    height: 100%;
  }

  .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  /* Dunkler Overlay für bessere Lesbarkeit */
  .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }

  /* Progress Bar Container - Zentriert und schmaler */
  .carousel-progress-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    /* Daumenbreite */
    max-width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 10;
    overflow: hidden;
  }

  /* Progress Bar Animation */
  .carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8B0000, #DC143C);
    width: 0%;
    transition: width 2.5s linear;
    border-radius: 3px;
  }

  /* Carousel Fade Effect */
  .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .carousel-fade .carousel-item.active {
    opacity: 1;
  }


  .partner-section {
    background: #f8f9fa;
    overflow: hidden;
  }

  .partner-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right,
        transparent,
        black 10%,
        black 90%,
        transparent);
    -webkit-mask-image: linear-gradient(to right,
        transparent,
        black 10%,
        black 90%,
        transparent);
  }

  .partner-scroll-track {
    display: flex;
    gap: 40px;
    animation: scroll 60s linear infinite;
    width: fit-content;
  }

  .partner-scroll-track:hover {
    animation-play-state: paused;
  }

  .partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  .partner-item:hover .partner-logo {
    filter: grayscale(0%);
  }



  .catering-scroll-track {
    display: flex;
    gap: 40px;
    animation: scroll 19s linear infinite;
    width: fit-content;
  }

  .catering-scroll-track:hover {
    animation-play-state: paused;
  }

  .catering-item {
    flex-shrink: 0;
    width: auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .catering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .catering-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }


  .catering-slider-image {

    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }




  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive Anpassungen */
  @media (max-width: 768px) {
    .partner-item {
      width: 150px;
      height: 80px;
      padding: 10px;
    }

    .partner-scroll-track {
      gap: 20px;
      animation-duration: 40s;
    }
  }

  .gallery-item {
    width: 100%;
    /* Oder eine feste Pixel-Breite, z.B. 200px */
    height: 200px;
    /* Feste Höhe, damit alle Vorschaubilder gleich hoch sind */
    overflow: hidden;
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .vbox-child img {
    height: 90vh;
    object-fit: contain;
  }