* {
    padding: 0;
    margin: 0;
    font-size: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --light-grey: #e9e9e9;
    --grey: #868686;
    --red: #E6332A;
    --h1: 48px;
    --h2: 26px;
    --h3: 22px;
    --text-size: 19px;
    --s-text: 14px;
}

.display-none {
    display: none !important;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    
    font-size: var(--h1);
    margin-bottom: .8rem;
    line-height: 125%;
    overflow-wrap: break-word;
}

h3 {
    font-size: var(--h3);
    margin-bottom: .6rem;
}

h4 {
    color: #000;
    font-size: var(--text-size);
    margin-bottom: .8rem;
}

p {
    font-size: var(--text-size);
    line-height: 145%;
}

ul {
    list-style-type: none;
}

address {
    font-style: normal;
}

.div-button {
    display: inline-block;
    border-radius: 40px;
    padding: .6rem 2rem;
}

a {
    text-decoration: none;
}

.mail-to-link, .tel-link {
    color: var(--red);
    text-decoration: underline 1px var(--red);
}

/* Header */

header {
    width: 100vw;
}

header img {
    width: 100%;
    height: auto;
}


/* Intro */

.intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8%;
    padding: 0 10%;
    margin: 6rem 0 8rem;
}

.intro__text-container {
    width: 100%;
    max-width: 750px;
}

.intro__channel-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    max-width: 575px;
    background-color: var(--light-grey);
    border: 2px solid var(--grey);
    border-radius: 20px;
    -webkit-box-shadow: 4px 4px 10px 1px rgba(110,110,110,0.2); 
    box-shadow: 4px 4px 15px 1px rgba(110,110,110,0.2);
    padding: 1.4rem 2.6rem;
}

.intro__channel-name .div-button {
    border: none;
    background-color: var(--red);
    color: #fff;
    transition: all .3s ease-out;
}

.intro__channel-name .div-button:hover {
    background-color: var(--light-grey);
    color: var(--red);
    outline: 2px solid var(--red);
}

.intro__channel-img {
    width: 70%;
    min-width: 105px;
    max-width: 135px;
    height: auto;
}

.blog {
    display: flex;
    flex-direction: row;
    gap: 3%;
    width: 100%;
    padding: 0 10% 0 0;
}

.blog__navigation {
    position: sticky;
    top: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    max-width: 405px;
    height: 45vh;
    background-color: var(--light-grey);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 2px solid var(--grey);
    border-left: none;
    -webkit-box-shadow: 4px 4px 10px 1px rgba(110,110,110,0.2); 
    box-shadow: 4px 4px 15px 1px rgba(110,110,110,0.2);
}

#desktop-navigation {
    display: flex;
}

#mobile-navigation {
    display: none;
}

.blog__navigation-ul {
    flex-direction: column;
    justify-content: space-between;
    height: 25vh;
    width: 100%;
}

.blog__navigation-link {
    font-size: var(--text-size);
    padding: .6rem 1rem .7rem;
    border-radius: 20px;
    width: 100%;
    text-decoration: underline 2px var(--red);
    color: #000;
    transition: all .3s ease-out;
}

.blog__navigation-link:hover {
    background-color: #fff;
}

.blog__mobile-navigation-icon {
    width: 50px;
    height: auto;
}

.blog__navigation-second-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.4rem;
    padding-left: 1rem;
}

.second-list-item {
    display: flex;
    color: var(--grey);
    background-color: var(--light-grey);
    padding: 2px 3%;
    border-radius: 10px;
}

.second-list-icon-container {
    display: flex;
    flex-direction: row;
}

.vertical-divider {
    height: 25px;
    width: 2px;
    background-color: var(--grey);
}

.nav-sm-icon{
    fill: #000;
    transition: .2s all ease-in-out;
}

.nav-sm-icon:hover {
    fill: var(--red);
}

.second-list-youtube {
    width: 35px;
    height: auto;
}


.second-list-instagram {
    width: 29px;
    height: auto;
}

.blog__content {
    width: 100%;
}

.blog__content-category-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: .4rem;
}

.blog__content-category-title-h2 {
    background-color: var(--red);
    color: #fff;
    padding: .8rem 1rem;
    border-radius: 5px;
    font-size: var(--h2);
}

.spacer {
    height: 5px;
    width: 100%;
    background-color: var(--red);
    border-radius: 20px;
}

.blog__content-post {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    gap: 25px;
    margin: 3.6rem 0 5rem;
}

.blog__content-post-img {
    width: 35%;
    position: relative;
    z-index: 3;
}

.post-text-link {
    text-decoration: none;
    overflow-wrap: break-word;
    background-color: #333;
    color: #fff;
    padding: .3rem .8rem;
    border-radius: 7px;
    line-height: 2.4rem;
    transition: all .3s ease-in-out;
}

.post-text-link:hover {
    background-color: #fff;
    color: #333;
    outline: 2px #333 solid;
}

.blog__content-post-img img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    z-index: 3;
}

.playlist-box:after {
    content: '';
    background-color: #333;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.playlist-box:before {
    content: '';
    background-color: #666;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog__content-post-playlist-size {
    position: absolute;
    z-index: 4;
    color: #fff;
    background-color: rgba(30, 30, 30, 0.8);
    padding: .2rem .5rem;
    bottom: 5%;
    right: 2%;
}

.blog__content-post-text {
    width: 55%;
}

.blog__content-post-text-statistics {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
    padding-top: 20px;
    margin-top: 20px;
    gap: 60px;
    border-top: solid 2px var(--light-grey);
}

.blog__content-post-text-statistics-numbers {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 14px;
}

.like-icon {
    height: auto;
    width: 20px;
}

.blog__content-post-text-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: var(--s-text);
    background-color: var(--light-grey);
    border: 1px solid var(--grey);
    text-align: center;
    padding: 11px 14px 10px;
    border-radius: 20px;
    min-width: 60px;
    -webkit-box-shadow: 1px 1px 4px 3px rgba(110,110,110,0.2); 
    box-shadow: 1px 1px 4px 3px rgba(110,110,110,0.2);
}

/*----- Rechtliches -----*/

.rechtliches-nav__button {
    background-color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    color: #000;
    outline: none;
    border: none;
    font-weight: bold;
    transition: all .2s ease-in-out;
}

.rechtliches-nav__button:hover {
    color: #fff;
    background-color: #000;
    outline: solid 2px #fff;
}

/*----- info ------*/
.info__header {
    display: flex;
    position: fixed;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 12vh;
    background-color: #000;
    padding: 0 10%;
}

.info__main {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 40px;
    align-items: center;
    padding: 19vh 10% 8vh;
}

.info__address {
    font-size: var(--text-size);
    line-height: 150%;
}

#impressum__img {
    height: auto;
    width: 400px;
}


/*---- Footer ----*/

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: rgb(30, 30, 30);
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 4rem 10% 6rem;
    margin-top: 8rem;
}

.footer__list {
    line-height: 170%;
}

.footer__list-item-link {
    color: #fff;
    text-decoration-line: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 1px;
}

.footer__list-socials {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    height: 50px;
    width: auto;
    transform: scale(95%);
    margin-top: 25px;
}

#footer__list-socials-youtube {
    height: 60px;
    width: auto;
}

#footer__list-socials-instagram {
    height: 48px;
    width: auto;
}

/*---- Info -----*/

.info__h2 {
    padding-bottom: 1rem;
    padding-top: 2rem;
    font-size: 26px;
    overflow-wrap: break-word;
}

.info__h3 {
    font-size: 22px;
    padding-top: 1rem;
    overflow-wrap: break-word;
}

.info__paragraph {
    margin-bottom: 1rem;
}

.info__bold {
    font-size: 19px;
    font-weight: bold;
    overflow-wrap: break-word;
}

.info__link {
    color: var(--red);
    text-decoration: underline;
    overflow-wrap: break-word;
}

.info__ul {
    list-style-type: disc;
    margin-bottom: 1rem;
}

.info__li {
    font-size: 19px;
    line-height: 145%;
}

#datenschutz__container {
    max-width: 1050px;
    width: 100%;
}

/*------- Mediaquery -------*/

@media screen and (max-width: 1150px) {

    :root {
        --h1: 42px;
        --h2: 22px;
        --h3: 28px;
        --text-size: 17px;
        --s-text: 14px;
    }

    #header-image {
        padding-top: 4rem;
        background-color: #000;
    }

    /* ---- Navigation ----*/
    .blog {
        position: relative;
        padding: 0 10%;
    }

    nav {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 2%;
    }

    .blog__navigation {
        position: fixed;
        flex-direction: row;
        justify-content: space-between;
        z-index: 5;
        top: 3.8rem;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 15px;
        border: 2px solid var(--grey);
        width: 85vw;
        max-width: none;
        height: min(85px, 12vh);
        min-height: 75px;
    }

    #desktop-navigation {
    display: none;
    }

    #mobile-navigation {
        display: flex;
    }

    .blog__navigation-ul {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 75%;
        gap: min(15%, 120px);
        height: auto;
    }

    .blog__navigation-link {
        height: auto;
        width: 20px;
    }

    .second-list-icon-container {
        display: flex;
        gap: 20px;
        width: 100%;
        height: min(60px, 8vh);
        border-radius: 10px;
        background-color: #fff;
        justify-content: center;
        box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, .2);
    }

    .blog__navigation-second-list {
        width: 20%;
        margin-top: 0;
        flex-wrap: nowrap;
        justify-content: center;
        flex-direction: column;
    }

    .second-list-item {
        background-color: #fff !important;
    }

    .second-list-instagram {
        width: 32px;
    }

    .second-list-youtube {
        width: 40px;
    }

    #nav-impressum-link {
        display: none;
    }

    .vertical-divider {
        display: none;
    }

    .blog__content-post {
        align-items: flex-start;
    }

    footer {
        padding: 4rem 10% 12rem;
    }
}

@media screen and (max-width: 930px) {
    .blog__navigation {
        height: min(75px, 9vh);
    }

    .blog__mobile-navigation-icon {
        width: min(10vw, 50px);
        height: auto;
    }

    .intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
    }

    .blog__content-post {
        flex-direction: column;
        margin: 3.6rem 0 7rem;
        align-items: center;
    }

    .blog__content-post-text {
        width: 90%;
    }

    .blog__content-post-img {
        width: 90%;
    }

    .blog__content-post-text-statistics {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    #impressum__img {
        display: none;
    }
}

@media screen and (max-width: 590px) {

    :root {
    --light-grey: #e9e9e9;
    --grey: #868686;
    --red: #E6332A;
    --h1: 38px;
    --h2: 24px;
    --h3: 20px;
    --text-size: 18px;
    --s-text: 14px;
    }

    #header-image {
        padding-top: 40px;
    }

    nav {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    #mobile-navigation {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .blog__navigation-ul {
        gap: 13%;
    }

    .intro__channel-container {
        flex-direction: column;
        flex-flow: column-reverse;
        gap: 18px;
    }

    .intro__channel-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .blog__content-post-text-button{
        font-size: 14px;
        padding: 4px 16px;
        min-width: auto;
    }

    .blog__navigation-second-list {
        display: none;
    }

    .blog__content-post-text {
        width: 100%;
    }

    .blog__content-post-img {
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 32px;
        padding: 8rem 22vw 12rem;
    }

    .footer__list-socials {
        display: flex;
    }
}