
/*Aktuelle Nav*/
.nav-right .link-home,
.mobile-menu .link-home{
    text-decoration: underline;
}

/*Header einstellungen*/
.header-container-right{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.header-container-right-header{
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: left;
}
.intro-text-container{
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.intro-text-container h3{
    font-size: 1.5rem;
    font-weight: normal;
}

/*Intro Audio einstellungen*/
.intro-audio-container {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.waveform-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100px;
    gap: 2px;
    position: relative;
}

.bar {
    width: 5px;
    background-color: lightgray;
    transition: height 0.1s, background-color 0.2s;
}
.play-intro-circle{
    margin-right: 3rem;
    margin-bottom: 0.25rem;
    width: 80px;  /* Durchmesser des Kreises */
    height: 80px;  /* Durchmesser des Kreises */
    background-color: white;  /* Weißer Kreis */
    border-radius: 50%;  /* Macht den Kreis rund */
    display: flex;  /* Flexbox für die Zentrierung */
    justify-content: center;  /* Horizontal zentrieren */
    align-items: center;  /* Vertikal zentrieren */
    transition: transform  ease-in;
}
.play-intro-circle:hover{
    cursor: pointer;
    transform: scale(1.05);
}
.play-intro-circle span{
    font-size: 3rem;
    color: rgb(22, 38, 65);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer-info {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgb(230, 233, 239);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/*Info einleitungs text*/
.info-container{
    margin-bottom: 10vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overall-info{
    width: 90%;
    text-align: left;
    font-size: 1.25rem;
}
.overall-info span{
    font-weight: bold;
    text-decoration: none;
    font-size: 2rem;
    color: rgb(22, 38, 65);
}
.redaktion-container{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.redaktion-container p{
    width: 47%;
    font-size: 1.25rem;
}
.redaktion-container p a{
    font-weight: bold;
    font-size: 1.4rem;
    color: rgb(22, 38, 65);
}

/*Eopisoden Container*/

.popular-overall-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10vh;
}
.popular-overall-header{
    width: 90%;
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
}
.popular-slider-container{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popular-slider-container a{
    text-decoration: none;
    color: rgb(230, 233, 239);
}
.popular-item{
    margin-left: 1rem;
    margin-right: 1rem;
    width: 375px;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: rgb(230, 233, 239);
}
.popular-item:hover {
    cursor: pointer;
    transform: scale(1.05); /* Vergrößert das Element um 5% */
    transition: transform 0.3s ease-in-out; /* Animiert die Veränderung */
}

/*Kopf des Containers*/
.popular-item-top{
    width: 100%;
    margin-bottom: -20px;
}
.popular-item-top img{
    width: 100%;
}
/*Body des containers*/
.popular-item-body{
    padding-top: 0.5rem;
    width: 100%;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(0, 0, 255, 0) 0%, rgb(22, 38, 65) 5%);
}
.popular-item-body-header{
    width: 90%;
}
.popular-item-body-header h3{
    width: 100%;
    font-size: 1.15rem;
    font-weight: bold;
    text-align: left;
    margin: 0;
    margin-bottom: 0.5rem;
}

.popular-item-body-body{
    width: 90%;
}
.popular-item-body-body p{
    width: 100%;
    font-size: 1rem;
    text-align: left;
    margin-top: 1rem;
}
/*Metadaten des containers*/
.popular-item-data{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(230, 233, 239);
}
.popular-item-data-left{
    font-size: 1.1rem;
}
.popular-item-data-left p span{
    font-weight: bold;
    font-size: 1.1rem;
}
.popular-item-data-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popular-item-data-right .more{
    color: rgb(230, 233, 239);
    text-decoration: none;
    padding: 0.5rem;
}

/* Container für den weißen Kreis */
.play-circle{
    margin-left: 0.5rem;
    margin-bottom: 0.25rem;
    width: 40px;  /* Durchmesser des Kreises */
    height: 40px;  /* Durchmesser des Kreises */
    background-color: white;  /* Weißer Kreis */
    border-radius: 50%;  /* Macht den Kreis rund */
    display: flex;  /* Flexbox für die Zentrierung */
    justify-content: center;  /* Horizontal zentrieren */
    align-items: center;  /* Vertikal zentrieren */
}

/* Das Play-Symbol */
.play-button {
    border-top: 10px solid transparent;  /* Linke Seite des Dreiecks */
    border-bottom: 10px solid transparent;  /* Rechte Seite des Dreiecks */
    border-left: 12px solid rgb(22, 38, 65);  /* Oben das Dreieck für den Play-Button */
}

/*Weitere Episode*/
.more-episodes-container{
    margin-top: 5vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more-episodes-container a{
    border-radius: 10px;
    padding: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: solid 1px rgb(22, 38, 65);
    background-color: rgb(230, 233, 239);
    color: rgb(0, 14, 41);
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease
}
.more-episodes-container a:hover{
    color: rgb(230, 233, 239);
    background-color: rgb(22, 38, 65);
}



@media only screen and (max-width:1300px){
    .intro-audio-container {
        margin-top: 40px;
    }
    .popular-item{
        margin-left: 1rem;
        margin-right: 1rem;
        width: 300px;
    }

    .play-intro-circle{
        margin-right: 3rem;
        margin-bottom: 0.25rem;
        width: 60px;  /* Durchmesser des Kreises */
        height: 60px;  /* Durchmesser des Kreises */
        background-color: white;  /* Weißer Kreis */
        border-radius: 50%;  /* Macht den Kreis rund */
        display: flex;  /* Flexbox für die Zentrierung */
        justify-content: center;  /* Horizontal zentrieren */
        align-items: center;  /* Vertikal zentrieren */
        transition: transform  ease-in;
    }
    .play-intro-circle span{
        font-size: 2rem;
        color: rgb(22, 38, 65);
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media only screen and (max-width:1080px){
    .popular-overall-header{
        font-size: 1.7rem;
    }
    .popular-item{
        margin-left: 1rem;
        margin-right: 1rem;
        width: 250px;
    }
    .popular-item-body-body p{
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .intro-text-container{
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
    .play-intro-circle{
        margin-right: 1.5rem;
    }
    .intro-text-container h3{
        margin-bottom: 0;
        font-size: 1.4rem;
    }
    .intro-audio-container {
        margin-top: 15px;
    }
    .waveform-container {
        gap: 1px;
    }
    .trailer-info{
        font-size: 1.25rem;
    }
    /*Overall Info container*/
    .overall-info{
        width: 90%;
        text-align: left;
        font-size: 1.25rem;
    }
    .overall-info span{
        font-weight: bold;
        text-decoration: underline;
        font-size: 1.7rem;
        color: rgb(22, 38, 65);
    }
}
@media only screen and (max-width:888px){

    .popular-item{
        margin-left: 1rem;
        margin-right: 1rem;
        width: 225px;
    }
    .popular-item-body{
        height: 200px;
    }
    .popular-item-data-left p,
    .popular-item-data-right p{
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .intro-text-container{
        margin-bottom: 0;
    }
    .play-intro-circle{
        margin-right: 1rem;
        margin-bottom: 0.25rem;
        width: 40px;  /* Durchmesser des Kreises */
        height: 40px;  /* Durchmesser des Kreises */
    }
    .play-intro-circle span{
        font-size: 1.4rem;
    }
}

@media only screen and (max-width:800px){

    .header-container-right{
        width: 85%;
    }
    .header-container-right-header{
        margin-top: 2rem;
    }
    .intro-text-container{
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    .intro-text-container p{
        margin-top: 0;
    }
    .play-intro-circle{
        margin-right: 3rem;
        margin-bottom: 0.25rem;
        width: 60px;  /* Durchmesser des Kreises */
        height: 60px;  /* Durchmesser des Kreises */
        background-color: white;  /* Weißer Kreis */
        border-radius: 50%;  /* Macht den Kreis rund */
        display: flex;  /* Flexbox für die Zentrierung */
        justify-content: center;  /* Horizontal zentrieren */
        align-items: center;  /* Vertikal zentrieren */
        transition: transform  ease-in;
    }
    .play-intro-circle span{
        font-size: 2rem;
        color: rgb(22, 38, 65);
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .waveform-container {
        gap: 3px;
    }
    
    .bar {
        width: 5px;
        background-color: lightgray;
        transition: height 0.1s, background-color 0.2s;
    }

    /*Neuste episoden container*/
    .popular-overall-header{
        margin-bottom: 0;
    }
    .popular-slider-container{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .popular-item{
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 3rem;
        width: 375px;
    }
    .popular-item-body{
        height: 225px;
    }
    .popular-item-data-left p,
    .popular-item-data-right p{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .popular-item-body-header{
        width: 90%;
    }
    .popular-item-body-header h3{
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .popular-item-body-body p{
        font-size: 1rem;
        margin-top: 1rem;
    }
    .popular-item-data-left p span{
        font-weight: bold;
        font-size: 1.25rem;
    }


    /*Redaktion Container*/
    .redaktion-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .redaktion-container p{
        width: 90%;
    }
}

@media only screen and (max-width:610px){
    .play-intro-circle{
        margin-right: 1rem;
    }
    .audio-visualizer {
        gap: 1px; /* Abstand zwischen den Balken */
    }
    .trailer-info{
        top: 25%;
        font-size: 1.15rem;
    }
    /*Overall Info container*/
    .overall-info{
        width: 90%;
        text-align: left;
        font-size: 1.15rem;
    }
    .overall-info span{
        font-weight: bold;
        text-decoration: underline;
        font-size: 1.5rem;
        color: rgb(22, 38, 65);
    }

    /*Redaktions container*/
    .redaktion-container p{
        width: 90%;
        font-size: 1.15rem;
    }
    .redaktion-container p a{
        font-size: 1.25rem;
    }
    
    .bar {
        width: 3px;
    }
}

@media only screen and (max-width:500px){
    .intro-text-container{
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
    .audio-visualizer {
        gap: 1px; /* Abstand zwischen den Balken */
    }
    .play-intro-circle{
        margin-right: 1rem;
        margin-bottom: 0.25rem;
        width: 38px;  /* Durchmesser des Kreises */
        height: 38px;  /* Durchmesser des Kreises */
    }
    .play-intro-circle span{
        font-size: 1.4rem;
    }
    .waveform-container {
        gap: 1px;
    }
    .bar{
        width: 5px;
    }
}

@media only screen and (max-width:470px){
    .header-container-right-header{
        font-size: 1.5rem;
    }
    .intro-text-container{
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
    .play-intro-circle{
        margin-right: 0.75rem;
        margin-bottom: 0.25rem;
        width: 40px;  /* Durchmesser des Kreises */
        height: 40px;  /* Durchmesser des Kreises */
    }
    .play-intro-circle span{
        font-size: 1.25rem;
    }

}

@media only screen and (max-width:405px){

    .popular-overall-header{
        font-size: 1.5rem;
    }

    .intro-text-container{
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    .play-intro-circle{
        margin-right: 0.5rem;
        margin-bottom: 0.25rem;
        width: 43px;  /* Durchmesser des Kreises */
        height: 43px;  /* Durchmesser des Kreises */
    }
    .waveform-container {
        gap: 1px;
    }
    .bar{
        width: 4px;
    }

    .popular-item{
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 3rem;
        width: 350px;
    }
    .popular-item-body{
        height: 200px;
    }


    /*Overall Info container*/
    .overall-info{
        width: 90%;
        text-align: left;
        font-size: 1.1rem;
    }
    .overall-info span{
        font-weight: bold;
        text-decoration: underline;
        font-size: 1.25rem;
        color: rgb(22, 38, 65);
    }

    /*Redaktions container*/
    .redaktion-container p{
        width: 90%;
        font-size: 1rem;
    }
    .redaktion-container p a{
        font-size: 1.15rem;
    }
}

@media only screen and (max-width:390px){
    .header-container-right-header{
        font-size: 1.5rem;
    }
    .intro-text-container{
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .play-intro-circle{
        margin-right: 0.5rem;
        margin-bottom: 0.25rem;
       
    }
    .play-intro-circle span{
        font-size: 1rem;
    }
    .waveform-container {
        gap: 2px;
    }
    .bar{
        width: 3px;
    }

    .trailer-info{
        top: 30%;
        font-size: 1rem;
    }

    .popular-item{
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 3rem;
        width: 275px;
    }
    .popular-item-body{
        height: 175px;
    }
    .popular-item-data-left p,
    .popular-item-data-right p{
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    .popular-item-body-header{
        width: 90%;
    }
    .popular-item-body-header h3{
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .popular-item-body-body p{
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    .popular-item-data-left p span{
        font-weight: bold;
        font-size: 1.1rem;
    }

    /*Weitere Episode*/
    .more-episodes-container{
        margin-top: 3rem;
    }
    .more-episodes-container a{
        padding: 24px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 1.1rem;
    }
}

@media only screen and (max-width:350px){
    .waveform-container {
        gap: 1.5px;
    }
}