.fullscreen-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.background-slideshow .bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.background-slideshow .bg-slide.active {
    opacity: 1;
}

.overlay-text {
    position: relative;
    z-index: 2;
    color: white;
}


.scroll-arrow-container {
    position: absolute;
    width: 50px; /* Breitere Klickfläche */
    height: 80px; /* Höhere Klickfläche */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
}

.scroll-arrow-container.bottom-right {
    bottom: 40px;
    right: 40px; /* Weiter in die Mitte gerückt */
}

.scroll-arrow-container.top-right {
    top: 40px;
    right: 40px; /* Weiter in die Mitte gerückt */
}

.scroll-arrow {
    position: absolute;
    width: 2px; /* Dünner Pfeilschaft */
    height: 55px; /* Längere Höhe */
    background-color: white;
    z-index: 3;
    text-decoration: none;
}

.scroll-arrow:before {
    content: '';
    position: absolute;
    width: 12px; /* Breite des Pfeilkopfs */
    height: 12px; /* Höhe des Pfeilkopfs */
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    right: -5px;
    top: 43px;
}

/* Pfeil unten rechts */
.bottom-right {
    bottom: 20px;
    right: 20px;
}

.bottom-right:before {
    top: 100%;
    left: -5px;
}

/* Pfeil oben rechts */
.top-right {
    top: 20px;
    right: 20px;
    transform: rotate(180deg);
}

.top-right:before {
    left: -5px;
    top: 100%
}


.list-films{
    font-size: var(--font-size-large_80);
    font-weight: var(--font-weight_light);
}

.list-films a{
    color:inherit;
}

.list-films a:hover{
    font-weight: var(--font-weight_medium);
    text-decoration: none;
}

/* Positionierung der Aufzählungen */
.bottom-left-list {
    bottom: 20px;
    left: 60px;
    color: white;
    text-align: left;
    z-index: 2;
}

.top-right-list {
    top: 20px;
    right: 20px;
    color: white;
    text-align: right;
    z-index: 2;
}