/* Datei: nav.css */

.brand {
  width: 700px;
  padding: 0.8em 1em 0 2em;
  float: left;
}



/*----- Menu -----*/
nav {
  position: fixed;
  top: 0px;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 1.2em;
  background: #000;
  border-bottom: 0;
}

nav ul {
  margin: 0;
  padding: 0 0 0 0;
  height: 100vh;
}

nav ul li {
  list-style: none;
  margin: 0;
  display: inline;
}

nav ul li a {
  color: #000;
  position: relative;
  padding: 0 0 0 0; 
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}

nav ul.menu li a:hover {
  color: #d900a9;
  border-bottom: 1px solid #000;
}
/*----------------*/





/*----- Media Queries -----*/
@media screen and (min-width: 3001px) {
    nav ul.menu {
    max-height: 20px;
  }
    nav a#nav-m,
    nav a.close {
    display: none;
  }
    nav ul li {
    margin: 0 1em 0 0;
  }
}


@media screen and (max-width: 3000px) {
  /*Formatierung Mobiles Menue*/
  nav ul {
    top: 22em;
    position: fixed; 
    background-color: rgba(0,0,0,0.9); 
; 
    width: 100%;
    left: -100%;
    list-style-type: none;
    margin: 0;
    padding: 0;

    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }

  nav ul li{
    display: block;
    text-align: center;
    font-family: "Arial;
    padding: 0.5em 0.5em;
    border-bottom: 1px solid #55afb6;
  }

  nav ul li a {
    color: #55afb6;
    font-size: 2em;
    padding: 0.25em 0;
  }

  nav ul.menu li a:hover {
    border-bottom: 0;
    color: #77f5ff;
  }

  /*Hamburger-Icon*/
  nav a#nav-m img,
  nav a.close img {
    width: 85px;
    height: 85px;
  }

  nav > .close,
  nav a#nav-m:target {
    display: none;
  }

  nav a:target ~ ul,
  nav a:target ~ .close {
    display: inline-block;
  }

  nav a:target ~ .close {
    position: absolute;
    margin-left: -20px;
  }

  nav a:target ~ ul {
    left: 0;
  }
}
/*--------------------------------------*/




