.slider {
    width: 100%;
    height: 540px;              /* Slider-Höhe fix setzen */
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;               /* Füllt 540px der .slider Section */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Nur aktive Slide sichtbar */
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Neue Positionierung */
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 40%;
    text-align: left;
}

.slide-content h2 {
    margin: 0 0 10px;
    font-size: 2em;
}

.slide-content p {
    font-size: 1.2em;
}