/* Kopieren Sie hier das komplette CSS aus der vorherigen HTML-Version */
.coverflow-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.coverflow-carousel .carousel-inner {
    height: 100%;
    perspective: 1000px;
}

.coverflow-carousel .carousel-item {
            height: 100%;
            display: flex !important;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
.coverflow-carousel .carousel-item.active {
            display: flex !important;
        }
        
        /* CoverFlow Container fÃ¼r jedes Slide */
        .coverflow-carousel .coverflow-container {
            position: relative;
            width: 100%;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .coverflow-carousel .coverflow-item {
            position: absolute;
            transition: all 0.6s ease;
            cursor: pointer;
        }
        
     .coverflow-carousel .coverflow-item img {
            width: 200px;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .coverflow-carousel .coverflow-item .item-text {
            opacity: 0;
            visibility: hidden;
            position: absolute;
            bottom: -80px;
            left: 0;
            right: 0;
            text-align: center;
            transition: all 0.6s ease;
            background: rgba(255,255,255,0.95);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
            width: 250px;
            margin-left: -25px;
        }
        
        /* Linkes Item */
        .coverflow-carousel .coverflow-item.left {
            left: 15%;
            transform: translateX(-50%) scale(0.8) rotateY(45deg);
            z-index: 1;
            opacity: 0.7;
        }
        
        /* Mittleres Item - fest in der Mitte */
        .coverflow-carousel .coverflow-item.center {
            left: 50%;
            transform: translateX(-50%) scale(1.2) rotateY(0deg);
            z-index: 10;
            opacity: 1;
        }
        
       .coverflow-carousel  .coverflow-item.center .item-text {
            opacity: 1;
            visibility: visible;
        }
        
       .coverflow-carousel .coverflow-item.center img {
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        
        /* Rechtes Item */
        .coverflow-carousel .coverflow-item.right {
            right: 15%;
            transform: translateX(50%) scale(0.8) rotateY(-45deg);
            z-index: 1;
            opacity: 0.7;
        }
        
        /* Hover Effekte fÃ¼r seitliche Items */
       .coverflow-carousel .coverflow-item.left:hover {
            transform: translateX(-50%) scale(0.85) rotateY(40deg);
            opacity: 0.9;
        }
        
        .coverflow-carousel .coverflow-item.right:hover {
            transform: translateX(50%) scale(0.85) rotateY(-40deg);
            opacity: 0.9;
        }
        
        /* Bootstrap Carousel Controls anpassen */
    .coverflow-carousel .carousel-control-prev, .coverflow-carousel .carousel-control-next {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            border: none;
            z-index: 20;
        }
        
       .coverflow-carousel .carousel-control-prev {
            left: 20px;
        }
        
       .coverflow-carousel .carousel-control-next {
            right: 20px;
        }
        
       .coverflow-carousel .carousel-control-prev-icon,
       .coverflow-carousel .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }
        
        .coverflow-carousel .carousel-control-prev:hover,
        .coverflow-carousel .carousel-control-next:hover {
            background: rgba(0,0,0,0.8);
        }
        
        /* Bootstrap Indicators anpassen */
       .coverflow-carousel .carousel-indicators {
            bottom: 20px;
        }
        
       .coverflow-carousel .carousel-indicators li {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: rgba(255,255,255,0.5);
            border: none;
        }
        
      .coverflow-carousel  .carousel-indicators .active {
            background-color: #007bff;
        }
        
        /* Responsive Anpassungen */
        @media (max-width: 768px) {
          .coverflow-carousel  .coverflow-item img {
                width: 150px;
                height: 200px;
            }
            
          .coverflow-carousel  .coverflow-item.center {
                transform: translateX(-50%) scale(1.1) rotateY(0deg);
            }
            
          .coverflow-carousel  .coverflow-container {
                height: 350px;
            }
            
         .coverflow-carousel   .coverflow-item.left {
                left: 10%;
            }
            
          .coverflow-carousel  .coverflow-item.right {
                right: 10%;
            }
            
          .coverflow-carousel  .coverflow-item .item-text {
                width: 200px;
                margin-left: -25px;
                bottom: -70px;
                padding: 10px;
            }
        }