.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Lato light', sans-serif;
    font-size: 1rem;
    color: #333;
    animation: bounce-down 1.4s infinite ease-in-out;
    line-height: 1.2;
    gap: 0.1rem;
}

.scroll-text {
    margin-bottom: 0.1rem;
    font-weight: bold;
}

.scroll-icon {
    font-size: 1.5rem;

    line-height: 1;
    text-align: center;
}

@keyframes bounce-down {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scene {
    height: 100vh;
    overflow: hidden;
    /*background-attachment: fixed;*/
    background-size: cover;
    background-color: transparent;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 200;
    position: relative;
}

.scene.one {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    background-color: var(--powdery-pink);
    text-align: center;
}

#myVideo.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw !important;
    height: 50vh !important;
    object-fit: cover;
    object-position: center;
    z-index: 999;
    display: block;
    transform: translateZ(0);
}


.landing-img {
    height: 300vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.landing-img1 {
    background-image: url('../assets/images/b1.jpeg');
}

.landing-img2 {
    background-image: url('../assets/images/b2.jpg');
}

.landing-img3 {
    background-image: url('../assets/images/b4.jpeg');
}

.landing-img4 {
    background-image: url('../assets/images/b3.jpeg');
}

.scene.two {
    min-height: 100vh;
    height: auto;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 40vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(
            to bottom,
            var(--light-wheat) 0%,
            rgba(238, 236, 225, 0.8) 40%,
            rgba(255, 255, 255, 0.6) 75%,
            #ffffff 100%
    );
}

.headlines-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60vh;
    min-width: 510px;
    z-index: 2;
    pointer-events: none;
    justify-content:center;
    margin-top: 3vh;
}

.scene-text.top{
    position: relative;
    z-index: 3;
    overflow: visible;
    will-change: transform, opacity;
    transition: none;
}

.home-intro-text {
    color: var(--dark-sage);
    /*font-family: 'Playfair Display', 'Georgia', serif;*/
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    z-index: 3;
    position: relative;
    padding: 1.5rem 1rem 0.5rem 1rem;
    margin: 0;
    max-width: 45vw;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
}

.values {
    margin-top: 0;
    background-color: white;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 20vh;
}

.marquee-row {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    align-items: center;
    /*margin-bottom: 5%; <!-- Todo -->*/
}

.marquee-content {
    display: inline-flex;
    gap: 3rem;
}

.marquee-content li {
    list-style: none;
    font-size: 4rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.marquee-content li::before {
    content: "· ";
    margin-right: 0.5rem;
}

.left-to-right .marquee-content {
    animation: scroll-left-to-right 40s linear infinite;
}

.right-to-left .marquee-content {
    animation: scroll-right-to-left 40s linear infinite;
    animation-delay: -12s;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes scroll-right-to-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.center-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}



.scene.two .col-12.position-relative {
    position: relative;
    min-height: 340px;
}

#why-headline {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(230px, 25vw, 500px);
    font-size: clamp(2rem, 3.8vw, 5.5rem);
    line-height: 1.08;
    color: #bfc1c4;
    margin: 0;
    pointer-events: none;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 0.01em;
    opacity: 0.83;
    margin-left: 10vw;

}

.home-intro-block {
    margin-left: 31vw;
    width: auto;
    padding: 0;
    overflow: hidden;
    line-height: 2;
    margin-bottom: 60vh;
}
