/* Farbpalette: */
:root{
    --text-color: #3D3D3D;
    --secondary-color: #Ffff00;
    --navbar-height:80px;
    --background-color-nav:#f2f2f2;
    --darker-backround-color:#CD69C9;

    /* --body-clr:#cbcbcb;
    --primary-clr:#05555c;
    --primary-light-clr:#eaf3fa;
    --links-clr:#186f78;
    --text-clr: #3f7277; */

}

/* Seiten-Voreinstellungen auf 0 setzen */
*{
    margin: 0;
    padding: 0;
}

/* Einstellungen:Hintergrund, Schrift, Size */
body{
    min-height: 100vh;
    background-image: url(images/hintergrund_Music.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Navigation: */
nav{
    background-color: var(--background-color-nav);
    box-shadow: 3px 3px 3px #0001;
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 50px;

}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--text-color);
    transition: all 0.4s;
    box-shadow: 3px 3px 3px #0001;
}

nav a:hover{
    background-color: var(--secondary-color);
    text-decoration: underline;
    
}

nav li:first-child{
    margin-right: auto;
    font-size:2.5rem;
    font-weight: 800;
    /* text-shadow: 2px 2px #ffff00; */
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #0000;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px #0001;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;

}
.sidebar a{
    width: 100%;
}

/* menu button auf großem Bildschirm verstecken */
.menu-button{
    display: none;
}

/* insta-icon: */

#insta-icon {
    padding: 30px;
    display: flex;
    justify-content: center;
    
}


/* Body Content */

h1 {
    font-size: 3rem;
    color:var(--text-color);
    font-weight: 800;
    text-shadow: 3px 3px 3px #0001;
    
}

h2 {
    font-size: 2rem;
    color:var(--secondary-color);
    font-weight: 800;
    text-shadow: 3px 3px 3px #0001;
    
}

h3{
    font-size: 2rem;
    font-weight: 800;
    color:var(--text-color);
    text-shadow: 3px 3px 3px #0001;
}

p{
    color: var(--text-color);
}

/* div.about{
    
    margin: 30px;
    display: block;
    text-align: center;
} */

div.content{
    
    margin: 30px;
    display: block;
    text-align: center;
}

div.coaching{
    margin-top: 30px;
    margin-bottom: 80px;
    display: block;
    text-align: center;
}

div.music{
    margin: 80px;
    display: block;
    text-align: center;
    

}

.player{
    aspect-ratio: 16/9;
    width: 50%;
    display: block;
    margin: auto;
}

/* Footer: */
div.footer{
    display: flex;
    justify-content: space-around;
    margin: 50px;
}

#impressum{
    text-decoration: none;
    color: var(--text-color);
}

#impressum:hover{
    text-decoration: underline;
}

div.footer p{
    font-weight: bold;
}


/* Überschrift verkleinern media: */
@media(max-width:970px) {
    nav li:first-child{
        margin-right: auto;
        font-size:1.3rem;
        font-weight: 800;
        /* text-shadow: 2px 2px #ffff00; */
    }

}

/* für tablet und handy */
@media(max-width:800px) {

    nav li:first-child{
        margin-right: auto;
        font-size:2rem;
        font-weight: 800;
        /* text-shadow: 2px 2px #ffff00; */
    }

    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}

/* für handy */
@media(max-width:420px){

    
    nav li:first-child{
        margin-right: auto;
        font-size:1.2rem;
        font-weight: 800;
        /* text-shadow: 1px 1px #ffff00; */


    }
    .sidebar{
        width:100%;
    }

    .player{
        aspect-ratio: 16/9;
        width: 100%;
        display: block;
        margin: auto;
    }

}

