:root{
    --red: #a81f35;
    --black: rgb(0, 0, 0);
    --text: #000000;
    --white: rgba(248, 248, 255, 1);
    --navbar-height: 85px;
    --mark_color:var(--red);
    --background_shadow: rgba(0,0,0, 0.5) ;
    --kontrast1: #5C0816;
    --kontrst2: #1EA838;
}

*, *:before, *:after {
    
    padding-inline-start: 0%;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

::selection {
  background: var(--mark_color);
  color: var(--white);
}

@font-face {
    font-family: "mmusik head";
    src: url(../assets/fonts/norwester.woff);
}

@font-face {
    font-family: "mmusik M";
    src: url(../assets/fonts/B1G_Block2.woff);
}

@font-face {
    font-family: "montserrat";
    src: url(../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

html{
    height: 100%;
    scroll-behavior: smooth;
    
}
    
body{
    margin: 0;
    padding: 0;
    font-size: 20px;
    width: 100%; 
    height:100%;
}

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


/******** NAVBAR *********/

nav{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    width: 100%;
    height: var(--navbar-height);
    background: #f8f8ff;
    align-items: center;
    z-index: 999;
    transition: top 0.4s;
    border-bottom:3px solid var(--red);
  }
  
  nav .logo{
    margin-left: 30px;
    /* logo neu 250px*/
    height: 60px;
    float: left;
  }
  
    
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 70%;
    height: 100%;
    justify-content: space-around;
    flex-direction: row;
    justify-content: flex-end;
  }
  
  nav li{
    height: 100%;
    width: 150px;
    text-align: center;
    position: relative;
    z-index: 900;
  }
      
  nav li :hover{
    color: #f8f8ff;
    background-color: var(--kontrast1);
    transition-duration: 0.4s;
    
  }
  
  nav ul a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text);
    font-size: 18px;
  }

  
  .dropdown{
    border-radius: 20px;
    height: min-content;
    width: 200px;
    background: rgba(37, 37, 37,0.8);
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: var(--navbar-height);
    z-index: 900;
  }
  
  .dropdown li{
    height: 70px;
    width: 100%;
    z-index: 900;
  }
  
  .dropdown :hover{
    background: var(--akzent);
    border-radius: 20px;
    transition-duration: 0.35s;
  }
  
  .dropdown li a{
    justify-content: flex-start;
    width: 100%;
    color: var(--white);
    font-size: 16px;
    padding-left: 30px;
  }
  
  nav li:hover .dropdown{
    display: flex;
  }
  
  .expandable_li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--navbar-height);
    z-index: 900;
  } 
  
  nav input[type="checkbox"]{
    -webkit-appearance: none;
    visibility: hidden;
    display: none;
  }
  
      .toggle_button{
        position: relative;
        cursor: pointer;
        display: none;
        justify-content: center;
        padding-right: 30px;
      }
  
      .toggle_button .middle{
        top: 0px;
        height: 4px;
        width: 30px;
        background: var(--red);
        border-radius: 50px;
        position: absolute;
        transition: 0.3s ease;
      }
  
      .toggle_button .top{
        bottom: 6px;
        height: 4px;
        width: 30px;
        background: var(--red);
        border-radius: 50px;
        position: absolute;
        transition: 0.3s ease;
      }
  
      .toggle_button .botom{
        top: 10px;
        height: 4px;
        width: 30px;
        background: var(--red);
        border-radius: 50px;
        position: absolute;
        transition: 0.3s ease;
      }
  
      input[type="checkbox"]:checked ~ .toggle_button .top{
        transform: rotate(-45deg);
        width: 27px;
        transform-origin: right;
        bottom: 5px;
        background: var(--kontrast1);
      }
  
      input[type="checkbox"]:checked ~ .toggle_button .botom{
        transform: rotate(45deg);
        width: 27px;
        transform-origin: right;
        top: 10px;
        background: var(--kontrast1);
      }
  
      input[type="checkbox"]:checked ~ .toggle_button .middle{
        transform: translateX(20px);
        opacity: 0;
      }
  
  
      @media(max-width: 1080px){
        .toggle_button{
          display: flex;
        }
  
        nav{
          position: inherit;
          
        }
  
        nav.logo{
          margin-left: 0;
        }
  
        nav ul{
          height: min-content;
          width: 100%;
          background: #f8f8ff;
          display: none;
          position: absolute;
          top: var(--navbar-height);
          border-bottom: 3px solid #a81f35;
          border-top: 3px solid #a81f35;
        }
  
        nav li{
          height: min-content;
          width: 100%;
        }
  
        nav ul a{
          padding: 30px 0;
          font-size: 18px;
        }
  
        label{
          font-size: 18px;
        }
  
        .expandable_li{
          display: block;
        }
  
        .expandable_li label{
          padding: 30px 0;
          cursor: pointer;
          display: block;
        }
        
        .expandable_li:hover .dropdown{
          display: none;
        }
  
        .expandable_li input[type="checkbox"]:checked ~ .dropdown{
          display: block;     
        }
  
        .expandable_li input[type="checkbox"]:checked ~ label{
          color: lightblue;
          background: grey;    
          border-radius: 20px; 
        }
  
        .dropdown{
          position: static;
          width: 100%;
          background: greenyellow;
        }
  
        .dropdown li{
          padding: 0;
          display: block;
          position: static;
        }
  
        .dropdown li a{
          width: 100%;
          padding: 0;
          justify-content: center;
          font-size: 18px;
        }
  
  
        #toggle_button:checked ~ ul{
          display: block;
        }
  
        .bar{
          display: flex;
        }
  
      }
  
      /******* NAVBAR END *******/


      
      /*
#navbar{
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    background-color:var(--white); 
    position: fixed; 
    top: 0px; 
    width: 100%;
    height: var(--navbar-height);
    transition: top 0.4s; /* Transition effect when sliding down (and up) 
    margin-left: 0%;
}*/
/* 
#navbar img{
    width: 250px;
    margin-top: 11.25px;
    float: left;
}

@media (max-width:768px){
    #navbar{
        display: flex;
        padding-left: 10%;
        width: 90%;
        top: 0px;
        margin: 0;
        border-radius: 0;
        justify-content: space-between;
        top: 0;
    }

    #navbar img{
        width: 200px;
        margin-top: 19.25px;
    }

    
}

@media (max-width:700px){
    #navbar{
        display: flex;
        padding-left: 10%;
        width: 90%;
        top: 0px;
        margin: 0;
        border-radius: 0;
        justify-content: space-between;
        padding-left: 10%;
        top: 0;
    }

    #navbar img{
        width: 200px;
        margin-top: 19.25px;
    }

}

#navbar input[type="checkbox"]{
    -webkit-appearance: none;
    visibility: hidden;
    display: none;
}
  
.toggle_button{
    position: absolute;
    cursor: pointer;
    display: none;
    justify-content: center;
    padding-right: 10%;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
   
        .toggle_button{
                padding-right: 60%;
            }
    
    }
    @media screen and (max-width: 480px) {
    
        .toggle_button{
                padding-right: 50%;
            }
    
    }
    
    .toggle_button .top{
        top: -40px;
        height: 5px;
        width: 30px;
        background: var(--red);
        border-radius: 50px;
        position: absolute;
        transition: 0.3s ease;
        margin-right: 10px;
    }
    
    .toggle_button .middle{
        top: -30px;
        height: 5px;
        width: 30px;
        background: var(--red);
        border-radius: 50px;
        position: absolute;
        transition: 0.3s ease;
        margin-right: 10px;
    }
    
    .toggle_button .botom{
        top: -20px;
        height: 5px;
        width: 30px;
        background: var(--red);
        border-radius: 50px;
        position: absolute;
        transition: 0.3s ease;
        margin-right: 10px;
    }
     */
    /*
    input[type="checkbox"]:checked ~ .toggle_button .top{
        transform: rotate(-45deg);
        width: 27px;
        transform-origin: right;
        bottom: 5px;
        background: var(--red);
    }
    
    input[type="checkbox"]:checked ~ .toggle_button .botom{
        transform: rotate(45deg);
        width: 27px;
        transform-origin: right;
        top: 10px;
        background: var(--red);
    }
    
    
    
    input[type="checkbox"]:checked ~ .toggle_button .middle{
        transform: translateX(20px);
        opacity: 0;
    }
    */
    






  
/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */ 
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    top: 0;
    left: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color:rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the 
                    overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 10%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 10px;
    text-decoration: none;
    font-size: 30px;
    color: #7e7e7e;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, 
.overlay a:focus {
    color: var(--white);
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size 
of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a{
        font-size: 20px
    }

    .overlay .closebtn{
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
}
/******* NAVBAR END *******/


/******** MAIN *******/

h1{
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    margin: 20px 0;
    letter-spacing: 0.5;
    font-size: 40px;
    padding: 20px 0;
    background: var(--red);
    border-radius: 20px;
    
}

h2{
    color: var(--text);
    font-size: 28px;
    font-weight: 200;
    
}

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

@media (max-height:700px){
    h1{
        font-size: 30px;
    }

    h2{
        font-size: 28px;
    }

    h3{
        font-size: 25px;
    }
  }


hr{
    width: 100%;
    height: 2px;
    background-color: var(--red);
    border: 0 none;    
}


#slide_bg{
    width: 100%;
    height: 100vh;
    background-color: var(--background_shadow);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    animation: slideBg 15s linear infinite 0s;
    animation-timing-function: ease-in-out;
    background-image: url(../assets/img/M Steht für Musik Header.jpg);
}

.hero img{
    margin-top: 80px;
}

@media (max-width:860px){
    #slide_bg{
        width: 100%;
        height: 100vh;
        background-color: var(--background_shadow);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        backface-visibility: hidden;
        animation: slideBg 15s linear infinite 0s;
        animation-timing-function: ease-in-out;
        background-image: url(../assets/img/M Steht für Musik Header.jpg);
    }

    .hero img{
        margin-top: 0px;
    }
}

@keyframes slideBg {
    100.00% {
        background-image: url(../assets/img/M Steht für Musik Header.jpg),url(../assets/img/M Steht für Musik Header.jpg);
    }
}

.landing{
    background-color: var(--background_shadow);
    height: 100%;
    padding-top: 0%;
    padding-bottom: 0%;
    text-align: left; 
}

.landing h1, .landing h2{
    color: var(--white);
    background: none;
}

.landing b{
    color: var(--red);
}

.landing .icons .social-icon{
    color: var(--white);
}

.landing .icons .social-icon:hover{
    color: var(--red);
}




.inhalt{
    padding: 100px 0px 25px;
    text-align: center; 
}

@media(max-width:860px){
    .inhalt{
        padding: 0px 0px 25px;
    }
}

main b{
    color: #ffffff;
    font-family: "mmusik M";
    font-size: 25px;
}

/*

.section img{
    border-radius: 40px;
}

*/

.landing{
    padding: 0px 100px 0%;
    
}

@media (max-width:819px){
    .section img {
        width: 300px;
    }

    .landing{
        padding: 0px 1% 0%;
        
    }

    .landing h1{
        padding-top: 0%;
        margin-top: 20px;
    }
}

.section button{
    margin-top: 25px;
    min-width: 200px;
    padding: 10px 30px;
    background-color: var(--red);
    border-style: none;
    color: #f8f8ff;
    border-radius: 5px;
    font-size: 20px;
    transition: border-radius ease 0.4s;
}

@media (max-width:860px){
    .section button{
        margin-top: 20px;
        min-width: 200px;
        padding: 10px 25px;
        background-color: var(--red);
        border-style: none;
        color: #ffffff;
        border-radius: 5px;
        font-size: 20px;
    }
  }


.section button:hover{
    color: var(--red);
    background-color: #ffffff;
    border-radius: 30px;
}

/********** NEWS *********/
/*blog*/

.news{
    background: var(--white);
    padding: 0px 10% 0%;
  }
  
  @media (max-width:860px){
    .news{
      margin: 0;
    }
  }



.news .eintrag{
    padding: 25px;
    margin: 10px 0;
    border: 3px solid var(--red);
    border-radius: 15px;
}

  .news .eintrag hr{
    width: 100%;
    height: 2px;
    background-color:var(--red);
    border: 0 none; 
  }
  
  .news h2{
    font-family: 'mmusik head';
    font-weight: bold;
    font-size: 30px;
    color: var(--text);
  }
  
  .news h3{
    font-weight: normal;
    font-style: italic;
    font-size: 22px;
    color: var(--text);
  }
  
  .news .theme{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center
  }
  
  .news .l_eintrag{
    width: 30%;
    color: var(--text);
    text-align: left;
  }
  
  .news .r_eintrag{
    width: 30%;
    margin-top: 15px;
    margin-left: 30px;
  }

  .news .r_eintrag img{
    width: 100%;
    border-radius: 15px;
  }

  .news a:hover{
    color: var(--red);
  }
  
  
  @media(max-width:860px){
    .news .theme{
      flex-direction:column-reverse;
      width: 100%;
      
    }
    .news .l_eintrag{
      width: 100%;
    }
  
    .news .r_eintrag{
      width: 100%;
      margin-left: 0;
    }

    .news .r_eintrag img{
        width: 100%;
      }
  }
  
  /*blog end*/



/********** NEWS END *********/

/********** ABOUT ************/
.about{
    background-color: var(--white);
    padding: 0px 10% 0%;
}

.about p{
    color: var(--text);
    text-align: justify;
    font-weight: lighter;
}

@media (max-width:860px){
    .about{
        background-color: var(--white);
        padding: 0px 5% 0%;
    }

    .about p{
        color: var(--text);
        text-align: left;
        font-weight: lighter;
    } 
}

.about img{
    width:90%;
    border-radius: 20px;
}

.flexbox-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.flexbox-item {
    flex: 0 1 auto;
    width: 50%;
    padding-top: 20px;
}

@media (max-width:1080px){
    .flexbox-panel {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .flexbox-item {
        flex: 0 1 auto;
        width: 100%;
        padding-top: 20px;
    }
}



.flex-item:nth-child(1) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(2) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(3) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(4) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(5) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(6) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}


/********** ABOUT END ********/

/********** ARTISTS **********/
.kunstler{
    background: var(--white);
    padding: 0px 10% 0%;
}

@media(max-width:860px){
    .kunstler{
        background: var(--white);
        padding: 0px 5% 0%;
    }
}

.artist{
    text-align: left;
}

.artist h2{
    text-align: center;
    font-weight: 300;
    font-size: 40px;
}

.artist h3{
    color: var(--white);
    letter-spacing: 3px;
}

.parent {
    height: 100%;
    margin: 0 2%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);

}

@media (max-width:860px){
    .parent{
        display: flex;
        flex-direction: column;  
    }
}

.pic {
    width: 100%;
    height: 100%;
}

.pic img{
    width: 100%;
}

.bio{
    background: var(--red);
    padding: 5%;
    display: flex;
    align-items: center;
}

.bio p{
    font-size: 18px;
    color: var(--white);
    text-align: justify inter-character;
}

.facts{
    padding: 5%;
    background: var(--red);
    text-align: left;
}

.facts a{
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}

.facts a:hover{
    color: var(--kontrast1);
}

.facts b{
    font-size: 16px;
}

.facts ion-icon{
    font-size: 30px;
}

.facts .icons{
    padding-top: 25px;
}

.artist .social{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 5px 2% 2%;
    background: var(--white);
}

.facts .social-icon{
    color: var(--white) ;
    transition: color 0.2s;
    text-decoration: none;
    font-size: 40px;
}




/********** ARTISTS END **********/



/********* PARTNER **********/

.partner{
    height: 100%;
    padding: 0px 10% 0%;
    background-color: var(--white);
    text-align: center;
}

.partner img{
    height: 150px;
}

@media (max-width: 819px){
    .partner img {
    width: auto;
    }
}









/********* PARTENER END **********/


/********** Kontakt *********/

.kontakt{
    height: 100vh;
    background: var(--white);
    padding: 0px 10% 0%;
}

.kontakt p{
    color: var(--text);
    font-weight: 100;
    letter-spacing: 0.5px;
}

.kontakt a{
    text-decoration: none;
}

.kontakt a:hover{
    color: var(--red);
}

.social-icon{
    color: rgba(0,0,0, 0.9);
    transition: color 0.2s;
    text-decoration: none;
    margin: 10px;
    font-size: 40px;
}



.social-icon:hover{
    color: var(--red);
    cursor: pointer;
}

.social-icon i{
    color: var(--white);
}





/********** KONTAKT END *********/


/********** IMPRESSUM *********/

.impressum{
    height: 100vh;
    background: var(--white);
    padding: 0px 10% 0%;
}

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




/********** IMPRESSUM END *********/

#footer{
    background-color: var(--white);
    width: 100%;
    height: 50px; 
    padding: 0;
    margin: 0;
    bottom: 0;
    position: fixed;
}

.signature p{
    font-size: 14px;
    font-style: italic;
    color:var(--text);
    text-align: center;
    padding-bottom: 10px;
}