
/*Cookie Banner einstellungen*/
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgb(22, 38, 65);
    color: rgb(230, 233, 239);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 300;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner-content {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-banner-content p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.cookie-banner-content a {
    color: rgb(200, 210, 220);
    text-decoration: underline;
}

.cookie-banner-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-button {
    padding: 0.7rem 1.5rem;
    border: 1px solid rgb(200, 210, 220);
    background-color: rgb(22, 38, 65);
    color: rgb(200, 210, 220);
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.cookie-button:hover {
    background-color: rgb(200, 210, 220);
    color: rgb(22, 38, 65);
}

.cookie-button-decline:hover {
    background-color: rgb(196, 94, 82); /* rot für "Ablehnen" */
    border: 1px solid rgb(196, 94, 82);
    color: rgb(230, 233, 239);
}


/*body und so*/
body{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(22, 38, 65);
    background-color: rgb(230, 233, 239);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    word-wrap: break-word;
}
header{
    width: 100%;   
    height: 100px;
    background-color: rgb(22, 38, 65);
    position: fixed;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}
.desktop-nav {
    width: 90%; 
    max-width: 1300px; /* gleiche max-width wie .header-container */
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    font-size: 1.25rem;
    padding: 1rem 0; /* nur oben und unten padding, kein links/rechts */
    margin-left: auto;
    margin-right: auto;
}
.desktop-inner-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-left{
    margin: 0;
    padding: 0;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.nav-left-a{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: left;
}
.nav-left img{
    width: 20%;
    min-width: 52px;
    border-radius: 0.5rem;
    margin: 0;
    padding: 0;
}
.nav-right{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: right;
}
.desktop-nav a,
.desktop-nav p{
    margin-left: 1rem;
    color: rgb(200, 210, 220);
    text-decoration: none;
}
.desktop-nav a:active{
    text-decoration: underline;
}
.link-abo:hover{
    cursor: pointer;
    text-decoration: underline;
}
.link-abo:active{
    text-decoration: underline;
}
.mobile-nav{
    display: none;
}

.search-nav-trigger{
    display: none;
}
main{
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    margin-left: auto;
    margin-right: auto;

}

/*Header layout*/
.header-container{
    padding: 0;
    margin: 0;
    margin-bottom: 15vh;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: rgb(200, 210, 220);
    background-color: rgb(22, 38, 65);
}
.header-inner-container{
    max-width: 1300px;
    min-width: 1070px;
    margin-left: 2rem;
    margin-right: 2rem;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.header-container-left{
    width: 425px;
    margin-right: 4rem;
}
.header-container img{
   width: 100%;
   border-radius: 1rem;
}
.header-container-right{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    width: 50%;
}
.header-container-right-header{
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 0;
}


/*Abonieren container*/
.abo-container{
    margin-bottom: 10vh;
    width: 100%;
    background-color: rgb(22, 38, 65);
    color: rgb(200, 210, 220);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.abo-container a{
    text-decoration: none;
}

.abo-row{
    margin: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid 1px rgb(200, 210, 220);
    background-color: rgb(22, 38, 65);
    color: rgb(200, 210, 220);
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease
}
.abo-row img{
    width: 40px;
    margin-right: 1rem;
    color: rgb(200, 210, 220);
    background-color: rgb(22, 38, 65);
}
.abo-row:hover{
    cursor: pointer;
    background-color: rgb(200, 210, 220);
    color: rgb(22, 38, 65);
}
#more-platforms {
    transition: all 0.3s ease-in-out;
}


/*Kontakt Container*/
.kontakt-container{
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(230, 233, 239);
}
.kontakt-header{
    width: 85%;
    font-size: 2rem;
    color: rgb(22, 38, 65);
    font-weight: bold;
}
.kontakt-inner-container{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.kontakt-left{
    width: 45%;
}
.kontakt-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.betreff{
    width: 100%;
    height: 60px;
    border: 1px solid rgb(22, 38, 65);

    font-size: 1rem;
    color: rgb(22, 38, 65);
    padding-left: 0.5rem;
    margin-bottom: 1.5rem;
}
.inhalt{
    width: 100%;
    height: 180px;
    border: 1px solid rgb(22, 38, 65);
    font-size: 1rem;
    color: rgb(22, 38, 65);
    padding-left: 0.5rem;
    padding-top: 0.5rem;
    margin-bottom: 1.5rem;
}
.absenden{
    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
}
.absenden:hover{
    cursor: pointer;
    color: rgb(230, 233, 239);
    background-color: rgb(22, 38, 65);
}
.kontakt-right{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.kontakt-email{
    width: 100%;
    text-align: center;
    color: rgb(22, 38, 65);
    font-size: 1.25rem;
    font-weight: bold;
}
.kontakt-info{
    width: 100%;
    text-align: center;
    color: rgb(22, 38, 65);
    font-size: 1.25rem;
}


/*Footer*/
footer{
    margin-top: 10vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgb(22, 38, 65);
    color: rgb(230, 233, 239);
}
.footer-container{
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
footer a{
    margin: 1rem;
    color: rgb(230, 233, 239);
}
footer p{
    margin: 1rem;
}

@media only screen and (max-width:1380px){
    .desktop-nav{
        width: 100%; /* Breite auf 100% */
        margin-left: 3rem;
        margin-right: 3rem;
    }
    .header-inner-container{
        margin-left: 3rem;
        margin-right: 3rem;
        justify-content: left;
    }
    .header-container-left{
        width: 400px;
    }
    

}
@media only screen and (max-width: 1165px){
    .desktop-nav{
        width: 95%; /* Breite auf 100% */
        margin-left: 3rem;
        margin-right: 3rem;
    }
    .header-inner-container{
        min-width: 0;
        justify-content: center;
    }
}
@media only screen and (max-width:1085px){
    .header-container{
        padding-bottom: 50px;

    }
    .header-container-left{
        margin-right: 1.5rem;
        width: 350px;
    }
    .header-container-right-header{
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    .header-inner-container{
        min-width: 0;
        justify-content: left;
    }

    .kontakt-header{
        font-size: 1.7rem;
    }
    .kontakt-right{
        width: 45%;
    }
}

@media only screen and (max-width:888px){
    /*Header layout*/
    .header-container{
        padding-bottom: 25px;
    }
    .header-inner-container{
        min-width: 0;
    }
    .header-container-left{
        width: 300px;
        margin-right: 0.5;
    }
    .header-container img{
        width: 100%;
        border-radius: 1rem;
    }
    .header-container-right{
        width: 50%;
    }
    .header-container-right-header{
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 0;
    }
    /*Abonieren container*/
    .abo-row{
        margin: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        padding: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
        border: solid 1px rgb(200, 210, 220);
        background-color: rgb(22, 38, 65);
        color: rgb(200, 210, 220);
        font-size: 1rem;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s ease
    }
    .abo-row img{
        width: 40px;
        margin-right: 1rem;
    }

}

@media only screen and (max-width:800px){
    .desktop-nav{
        width: 100%;
        margin-left: 0rem;
        margin-right: 0rem;
    }
    .desktop-inner-nav{
        width: 85%;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
    }
    .nav-right{
        display: none;
    }
    .nav-left a{
        font-size: 1rem;
    }
    .mobile-nav{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hamburger-icon {
        font-size: 30px;
        cursor: pointer;
        width: 50px;
        height: 40px;
        border-radius: 10px;
        z-index: 100;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 0;
    }
    
    /* Hamburger-Icon Balken */
    .hamburger-icon .bar {
        width: 30px;
        height: 4px;
        top: 50%;
        right: 0;
        background-color: rgb(230, 233, 239);
        transition: all 0.3s ease;
        border-radius: 2px;
        position: absolute;
        transform: translateX(-50%);  /* Zentriert die Balken */
    }
    
    /* Die Balkenpositionen */
    .hamburger-icon .bar:nth-child(1) {
        top: 8px;  /* Position des oberen Balkens */
    }
    
    .hamburger-icon .bar:nth-child(2) {
        top: 18px;  /* Position des mittleren Balkens */
    }
    
    .hamburger-icon .bar:nth-child(3) {
        top: 28px;  /* Position des unteren Balkens */
    }
    
    /* Umwandlung des Hamburger-Icons in ein Kreuz */
    .hamburger-icon.open .bar:nth-child(1) {
        transform: translateX(-50%) rotate(45deg);  /* Oberer Balken dreht sich um 45 Grad */
        top: 18px;  /* Zentriert den oberen Balken bei der Kreuzform */
    }
    
    .hamburger-icon.open .bar:nth-child(2) {
        opacity: 0;  /* Der mittlere Balken wird unsichtbar */
    }
    
    .hamburger-icon.open .bar:nth-child(3) {
        transform: translateX(-50%) rotate(-45deg);  /* Unterer Balken dreht sich um -45 Grad */
        top: 18px;  /* Zentriert den unteren Balken bei der Kreuzform */
    }
    
    /* Dropdown Menü */
    .mobile-menu {
        margin-top: 0.5rem;
        background-color: rgb(230, 233, 239);
        text-align: left;
        position: fixed;
        top: 60px; /* Abstand zum Hamburger-Icon */
        right: 40px;
        width: 200px;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        display: none;
        text-decoration: none;
    }
    
    .mobile-menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu ul li {
        font-size: 1.1rem;
    }
    
    .mobile-menu ul li a {
        color: rgb(22, 38, 65);
        text-decoration: none;
        padding: 12px;
        display: block;
        background-color: rgb(230, 233, 239);
        transition: background-color 0.3s;
        margin: 1rem;
    }
    .mobile-menu ul li p {
        color: rgb(22, 38, 65);
        text-decoration: none;
        padding: 12px;
        display: block;
        background-color: rgb(230, 233, 239);
        transition: background-color 0.3s;
    }
    .user-info{
        display: flex;
        align-items: center;
        justify-content: left;
        padding-left: 2rem;
        text-align: left;
    }
    .user-info p{
        width: 70%;
    }
    .status-indicator {
        width: 12px; /* Größe des Punktes */
        height: 12px;
        left: 10px;
        background-color: #39ff14; /* Neon-Grün */
        border-radius: 50%; /* Macht den Punkt rund */
        display: inline-block; /* Ermöglicht es, mit Text und anderen Elementen auf einer Linie zu sein */
        position: absolute; /* Ermöglicht die Platzierung in anderen Layouts */
    }
    .mobile-menu ul li a:hover {
        text-decoration: underline;
    }
    .mobile-menu .logout:hover{
        background-color: rgb(196, 94, 82);
    }
    .mobile-menu .login:hover{
        background-color: rgb(141, 182, 157);
    }
    /*Header layout*/
    .header-inner-container{
        min-width: 0;
        margin-left: 0rem;
        margin-right: 0rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .header-container-left{
        width: 85%;
        margin-right: 0;
    }
    .header-container-right{
        width: 85%;
    }
    .header-container-right-header{
        font-size: 1.4rem;
    }
    .kontakt-left{
        width: 50%;
    }
    .kontakt-email{
        font-size: 1.1rem;
    }
    .kontakt-info{
        font-size: 1.1rem;
    }
    .right-mobile-nav-search{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width:650px){
    .kontakt-header{
        text-align: center;
    }
    .kontakt-inner-container{
        flex-direction: column;
    }
    .kontakt-left{
        width: 80%;
    }
    .kontakt-right{
        margin-top: 2rem;
        width: 80%;
    }
    .kontakt-email{
        font-size: 1.25rem;
    }
    .kontakt-info{
        font-size: 1.25rem;
    }
    .absenden{
        border-radius: 10px;
        padding: 30px;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 1.15rem;
    }
}

@media only screen and (max-width:550px){
    .kontakt-left{
        width: 90%;
    }
    .kontakt-right{
        width: 90%;
    }
}

@media only screen and (max-width:470px){
    header{
        height: 80px;
    }
    .home-link-mobile-hidden{
        display: none;
    }
    .desktop-nav{
        padding-top: 1rem;
    }
    .kontakt-header{
        font-size: 1.4rem;
    }

    
}
@media only screen and (max-width:370px){
    .kontakt-email{
        font-size: 1.1rem;
    }
    .kontakt-info{
        font-size: 1.1rem;
    }
}
