/* Menü */

.nav-light-text {
    color: white;
}



/* Intro */

.intro-container {
    position: relative;
    margin-bottom: -5px;
}

.intro-container img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    object-position: top;
    filter: brightness(50%);
}

.intro-text-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: end;
    margin: 5px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.intro-title {
    font-size: 70px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.intro-subtitle {
    font-size: 25px;
    font-weight: 400;
    color: whitesmoke;
}

@media only screen and (max-width: 900px) {
    .intro-text-container {
        right: 15px;
    }

    .intro-title {
        font-size: 9vw;
        font-weight: 500;
    }

    .intro-subtitle {
        font-size: 4vw;
    }
}


/* Über */

.about-container {
    background-color: #eeeeee;
    padding: 25px 0;
}

.about-title {
    font-size: 30px;
    font-weight: 500;
}

.about-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin: auto;
    padding: 15px;
    font-size: 20px;
}

.about-player-item {
    position: relative;
}

.about-player-item:hover {
    cursor: pointer;
}

.about-player-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 60px;
    transition: font-size .3s;
}

.about-player-item i:hover {
    font-size: 70px;
}

.about-player-item img, .about-text-item p {
    max-width: 500px;
    height: auto;
}

.about-player-item img {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 10px 20px 0 transparent;
}

.about-text-item hr {
    width: 140px;
    height: 2px;
    border: none;
    margin-bottom: 25px;
    background-color: var(--accent-color);
}

.about-text-item a {
    padding: 10px 15px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-top: 25px;
}

@media only screen and (max-width: 1300px) {
    .about-items {
        flex-direction: column-reverse;
        width: 80%;
    }

    .about-items img {
        width: 100%;
    }
}


/* Karten */
.cards-container {
    background-color: #F5F5F5;
}

.cards-container-items {
    display: grid;
    grid-template-columns: calc(33.33% - 33.33px) calc(33.33% - 33.33px) calc(33.33% - 33.33px);
    column-gap: 50px;
    width: 80%;
    margin: 25px auto;
}

.card-item {
    display: flex;
    margin: 0 auto auto auto;
    width: 100%;
    max-width: 600px;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 10px 20px 0 transparent;
}

.card-title {
    font-size: 30px;
    background-color: #e0e0e0;
    padding: 5px 10px;
}

.card-player-item {
    position: relative;
}

.card-player-item:hover {
    cursor: pointer;
}

.card-item img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 15px 0;
}

.card-player-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 50px;
    transition: font-size .3s;
}

.card-player-item i:hover {
    font-size: 60px;
}

.card-item a {
    padding: 10px 15px;
    margin: 0 auto 0 0;
    background-color: var(--accent-color);
    color: white;
    font-size: 20px;
    transition: text-indent .075s;
}

.card-item ul {
    margin: 0 0 0 25px;
    height: 100%;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s, opacity .3s, margin .3s;
}

.card-item ul li {
    margin-bottom: 5px;
}

.card-item ul li:last-child {
    margin-bottom: 0;
}

.card-item a:hover {
    cursor: pointer;
}

.show-professional-text, .show-sportial-text {
    max-height: 1000px!important;
    opacity: 1!important;
    margin: 15px 0 0 25px!important;
    pointer-events: all!important;
}

@media only screen and (max-width: 1500px) {
    .cards-container-items {
        grid-template-columns: 100%;
        justify-content: center;
        gap: 25px;
    }
}


/* Videoplayer */
#video-player {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 3;
}

#player {
    width: 80%;
    max-width: 750px;
    height: auto;
    margin: auto;
    aspect-ratio: 16/9;
}

.show-player {
    display: flex!important;
}
