/**
 * STYLES: Block 001 - Hero Bereich
*/

.block-001 {
    height: calc(100vh - 60px);
}

.block-001::before,
.block-001::after {
    content: '';
    background-image: url(/wp-content/uploads/2026/03/star-blau.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -32rem;
    height: 60rem;
    width: 60rem;
    transform-origin: center;
    animation:
        float 10s ease-in-out infinite,
        fade  6s ease-in-out infinite;
}

.block-001::after {
    background-image: url(/wp-content/uploads/2026/03/star-violet.png);
    left: auto;
    right: -32rem;
    top: 45%;
    animation:
        float 13s ease-in-out infinite,
        fade  8s ease-in-out infinite;
    animation-delay: -3.5s, -2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, -50%) rotate(-18deg); }
  50%       { transform: translate(0, calc(-50% - 30px)) rotate(18deg); }
}

@keyframes fade {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.block-001 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.block-001 .bg-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    background: var(--gradient-dark);
}

.block-001 .background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.block-001 .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1);
}

/* .block-001 .background-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(282deg, rgba(42, 37, 37, 0) 30%, rgba(42, 37, 37, 0.4) 95%);
} */

.block-001 .hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: var(--section-padding-top-bottom);
}

.block-001 h1 {
    color: var(--color-white);
    text-align: center;
    margin: 0 auto;
}

.block-001 h1 span {
    color: var(--color-yellow);
}

.block-001 .lead {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 500;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.block-001 .cta-button-wrapper {
    justify-content: center;
}


/* Slick Slider CSS */

/* .block-001 .slick-track,
.block-001 .slick-list {
    height: inherit !important;
}

.block-001 ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translate(-50%, 0);
    list-style-type: none;
    padding: 0;
    z-index: 9;
}

.home .block-001 ul.slick-dots {
    bottom: 8rem;
}


.block-001 ul.slick-dots button {
    font-size: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    border: none;
    background: var(--background-white);
    cursor: pointer;
}

.block-001 ul.slick-dots li.slick-active button {
    background: var(--background-liga);
}

.block-001 ul.slick-dots li:not(:last-child) {
    margin-right: .5rem;
}

.block-001 ul.slick-dots li:first-child:nth-last-child(1) {
  display: none;
} */