.Main-Header-Wrapper {
    padding-top: 5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    width: calc(100vw - 140px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Main-Header-Title {
    font-family: 'Gilroy', sans-serif;
    color: #fff;
    font-size: 1.75rem;
    font-weight: bold;

}

.Main-Header-Inner-Wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
    width: 100%;
}

.Main-Header-Title-Icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Main-Header-Title-Icons img {
    width: 3rem;
    padding-left: 20px;
}

.hero-section {
    padding-top: 6em;
    padding-left: 6rem;
    padding-right: 6rem;
    /* width: calc(100vw - 8rem); */
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}

.top-event {
    background-image: url('/resources/taylor-deas-melesh-fkaQ-cqU4Uo-unsplash.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 60rem;
    position: relative;
}

.hero-section-inner-wrapper {
    display: flex;
    justify-content: left;
    align-content: center;

    max-width: 2000px;

    width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-section .left {
    color: #fff;
    font-size: 5rem;
    font-family: 'Gilroy', sans-serif;
    color: #fff;

    font-weight: 900;
    padding-right: 4rem;

    border-right: 5px #fff solid;
}

.hero-section .right {
    color: #fff;
    font-size: 5rem;
    font-family: 'Gilroy', sans-serif;
    color: #fff;

    font-weight: 900;
    padding-left: 4rem;

}

.signup-button {
    font-size: 1.7rem;
    color: #000;
    background-color: #fff;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    line-height: 2rem;
    border-radius: 0.5rem;
    font-weight: 900;
    display: inline-block;
    margin-top: 2rem;
    margin-left: 2rem;
}


.banner-gray {
    position: absolute;
    top: -30vh;
    /* vertikale Position */
    left: 40vw;
    /* horizontale Position */
    width: 100px;
    /* Breite wie gewünscht */
    height: 100vw;
    /* Höhe wie gewünscht */
    background: #212121;
    transform-origin: top right;
    transform: rotate(-50deg);
    /* Rotation des Banners */
    z-index: 1000;
    pointer-events: none;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Damit Text nicht abgeschnitten wird */
}

.banner-gray ul {
    transform: rotate(89.5deg);
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    /* große Schrift */
    text-align: center;
    white-space: nowrap;
    /* keine Zeilenumbrüche */

    display: flex;
    gap: 1em;
    flex-wrap: nowrap;
    pointer-events: auto;
}

.banner-white {
    position: absolute;
    top: 90%;
    /* vertikale Position */
    left: -3vw;
    /* horizontale Position */
    width: 105vw;
    /* Breite wie gewünscht */
    height: 100px;
    /* Höhe wie gewünscht */
    background: #ffffff;
    transform-origin: top left;
    transform: rotate(-10deg);
    z-index: 1000;
    pointer-events: none;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.banner-white ul {

    list-style: none;

    margin: 0;
    color: black;
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    /* große Schrift */
    text-align: left;
    white-space: nowrap;
    /* keine Zeilenumbrüche */

    display: flex;
    gap: 1em;
    flex-wrap: nowrap;
    pointer-events: auto;
    align-items: center;
}

.banner-white-highlighted {
    background-color: black;
    color: #fff;
    padding: 5px 20px 5px 20px;
}

/* Basis für Desktop bleibt gleich */

/* Für große Bildschirme (ab 1200px) */
@media (max-width: 1500px) {
    .banner-white ul {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .banner-gray {
        left: 30vw;

    }


}

/* Für mittelgroße Bildschirme (Tablet, 768px bis 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .banner-gray {

        left: 25vw;
        width: 70px;

    }

    .banner-gray ul {
        font-size: 2rem;
    }

    .Main-Header-Title {

        font-size: 1.25rem;

    }

    .hero-section .left {

        font-size: 4rem;
        border-right: 5px #fff solid;
    }

    .hero-section .right {

        font-size: 4rem;
    }

    .signup-button {
        font-size: 1.5rem;
    }

    .Main-Header-Title-Icons img {
        width: 2.75rem !important;
        padding-left: 20px;
    }

    .banner-white {

        height: 70px;
    }

    .banner-white ul {
        font-size: 1.75rem;
    }

}

@media (min-width: 768px) and (max-width: 1000px) {
    .banner-white ul {
        font-size: 1.5rem;
    }

    .banner-white {
        top: 70% !important;
    }

    .banner-gray {
        left: 18vw;
        width: 60px;
        height: 120vw;
    }



    .banner-gray ul {
        font-size: 1.5rem;
    }

    .hero-section .left {

        font-size: 3.5rem;
        border-right: 5px #fff solid;
    }

    .hero-section .right {

        font-size: 3.5rem;
    }

    .signup-button {
        font-size: 1rem;
        padding: 0.5rem 1rem 0.5rem 1rem;
    }
}

@media (max-width: 900px) {
    .banner-gray {

        width: 50px;
        left: 18vw;
        transform: rotate(-48deg);
        /* Rotation des Banners */

    }

    .banner-gray ul {
        font-size: 1.25rem;
    }

    .hero-section .left {

        font-size: 2.75rem;
        border-right: 5px #fff solid;
    }

    .hero-section .right {

        font-size: 2.75rem;
    }

    .signup-button {
        font-size: 1rem;
        padding: 0.5rem 1rem 0.5rem 1rem;

    }

    .banner-white ul {
        font-size: 1.25rem;
    }

    .Main-Header-Title-Icons img {
        width: 2.5rem !important;
        padding-left: 20px;
    }
}

@media (max-width: 810px) {
    .Main-Header-Title-Icons img {
        width: 2rem !important;
        padding-left: 20px;
    }

    .Main-Header-Wrapper {
        padding-top: 3rem;
        padding-left: 3rem;
        padding-right: 3rem;
        width: calc(100vw - 6rem);

    }



    .hero-section .left {

        font-size: 2.5rem;
        border-right: 5px #fff solid;
    }

    .hero-section .right {

        font-size: 2.5rem;
    }

}

/* Für kleine Bildschirme (Smartphones, bis 767px) */
@media (max-width: 767px) {
    .banner-gray {

        transform: rotate(-45deg);
        /* Rotation des Banners */
        height: 130vw;
        left: 25vw !important;


    }

    .signup-button {
        font-size: 1rem;
        padding: 0.5rem 1rem 0.5rem 1rem;

    }

    .Main-Header-Title {

        font-size: 1.1rem;

    }

    .banner-white {
        height: 70px;
        top: 70% !important;
    }

    .banner-white ul {
        font-size: 1rem;
    }
}

@media (max-width: 720px) {
    .banner-gray {

        display: none;

    }

    .Main-Header-Title {

        font-size: 1.1rem;

    }

    .hero-section-inner-wrapper {
        justify-content: center;

    }

    .hero-section {
        padding: 0;
        padding-top: 6rem;
    }

    .signup-button {
        font-size: 1rem;
        display: block;
        /* damit es wie ein Block-Element wirkt */
        margin: 0 auto;
        /* zentriert es horizontal */
        width: fit-content;
        /* passt die Breite an den Inhalt an */
        text-align: center;

        margin-top: 40vh;

    }
}

@media (max-width: 600px) {
    .banner-white {

        height: 70px;
    }

    .banner-white ul {
        font-size: 0.75rem !important;
    }

    .hero-section .left {

        font-size: 2.25rem;
        border-right: 5px #fff solid;
        padding-right: 1.5rem;

    }

    .hero-section .right {

        font-size: 2.25rem;
        padding-left: 2rem;
    }

    .banner-white ul {
        font-size: 1rem;
    }
}

/* Für sehr kleine Bildschirme (kleine Smartphones, bis 480px) */
@media (max-width: 480px) {
    .banner-white ul {
        font-size: 0.70rem !important;

    }

    .banner-white {
        top: 70% !important;
    }

    .top-event {

        min-height: 20rem !important;
    }
}