.landing-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #141D2F;
    isolation: isolate;
}

.landing-section h1 {
    font-weight: 700;
    font-size: clamp(36px, 8vw, 128px);
    height: auto;
    line-height: 1.2;
}

.landing-section h2 {
    color: #9747FF;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 64px);
    height: auto;
    line-height: 1.2;
}

.landing-section h3 {
    font-weight: 400;
    height: auto;
    font-size: clamp(28px, 5vw, 90px);
    rotate: -90deg;
    white-space: nowrap;
}

.headline-wrapper {
    display: flex;
    align-items: center;
}

.headlines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 40px;
}

.landing-section-button {
    cursor: pointer;
    color: white;
    height: auto;
    border-radius: 10px;
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    background-color: #70E61C;
    font-size: clamp(16px, 2.5vw, 23px);
    line-height: 120%;
    transition: all 0.3s ease-in-out;
    border: none;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
}

.landing-section-button:hover {
    background-color: #9747FF;
    transform: scale(1.15);
}

.landing-section-link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: clamp(40px, 8vh, 100px);
}

.links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 42px);
}

.links>img {
    width: clamp(50px, 10vw, 100px);
    height: 2px;
}

.links a {
    transition: transform 0.1s ease-in-out;
}

.links a img {
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
}

.links a:hover {
    transform: scale(1.2);
}

.scroll-down-container {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(14px, 2.5vw, 23px);
    line-height: 120%;
    transform: rotate(90deg);
    transform-origin: center;
    white-space: nowrap;
}

.scroll-down-container img {
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
    transform: rotate(90deg);
}

.landing-section-shadows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.landing-section-shadows img:first-child {
    position: absolute;
    top: 12%;
    left: clamp(-500px, calc(-85vw / 3), -185px);
    width: clamp(400px, 60vw, 800px);
    height: clamp(400px, 60vw, 800px);
}

.landing-section-shadows img:nth-child(2) {
    position: absolute;
    top: 60%;
    right: clamp(-435px, calc(-85vw / 2.5), -230px);
    transform: translateY(-50%);
    width: clamp(400px, 60vw, 800px);
    height: clamp(400px, 60vw, 800px);
}

/* Tablet & kleine Desktops */
@media(max-width: 1024px) {
    .headlines {
        padding-bottom: 20px;
    }
}

/* Tablets Portrait */
@media(max-width: 768px) {
    .headlines {
        padding-bottom: 0;
    }

    .scroll-down-container {
        display: none;
    }
}

/* Mobile Landscape */
@media(max-width: 600px) {
    .landing-section {
        height: auto;
        min-height: 100vh;
    }

    .links {
        gap: 30px;
        justify-content: center;
    }
}

/* Mobile Portrait */
@media(max-width: 480px) {
    .headlines {
        gap: 4px;
    }
}

/* Extra Small Devices */
@media(max-width: 375px) {
    .links {
        gap: 20px;
    }

    .links a img {
        width: 30px;
        height: 30px;
    }
}