
/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* alle anderen menüs sowie auch allgemeine links im text bzw. eventuelle "Weiter-Links"
sind in der Datei "format.css" direkt beim jeweiligen abschnitt (z.b. Logo, Info, Inhalt, Fuss o.ä.) definiert */
/* ############################################################ */



/* = = = = = = = = = = = = = = = = = = = = = =  */
/* MENÜ FORAMTIERUNG                            */
/* = = = = = = = = = = = = = = = = = = = = = =  */

nav {margin:0;height:0;
}

#menu1 {display:block;
width:28rem;min-height:28rem;
POSITION:fixed;z-index:0;
top:0rem;left:50%;
margin-left:-14rem;
background:#1f1f1f ;
padding: 1rem 0 1rem 0;
opacity:0;
transition:all 2s;
border:solid 1px rgba(0,0,0,.2);
}

#menu1 ul {display:table-cell;vertical-align:middle;
text-align:center;
margin:0 auto;
padding:0 0 0 .5rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0rem;
}

#menu1 li a {display:inline-block;width:30rem;
text-align:left;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
padding:.3rem 1rem ;
color:#fff;
font-weight:normal;
text-transform:none;
}

#menu1 i {color:#D8D8D8;
}

/*  hover und aktuell angezeigter link  */
#menu1 li a:hover {background:transparent;
color:#fff;text-decoration:underline;
}

#menu1  #aktuell a {background:firebrick;
color:#fff;
}


/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
position:fixed;
top:0rem; right:50%;
margin-right:-2rem;
z-index:2;
padding:0rem;
background:#1f1f1f;
color:#fff;
font-size:2rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
}

/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
position: fixed;
top:0rem; right:50%;
margin-right:-2rem;
z-index:3;
cursor:pointer;
background:silver;
color:maroon;
height:4rem;
width:4rem;
line-height:4rem;
opacity:0;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-top:0;
opacity:1;z-index:2;
transition:all 2s ease-out;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
opacity:1;
transform:rotate(720deg);
transition:all 2s ease-out;
}


/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */



/* ==================================== ab 960 pixel ================================== */

@media (min-width: 960px) {

nav {height:auto;padding:0 0rem; }

/* menü-schalter  ausblenden */
nav label.button-open {display:none; }
nav label.button-close {display:none; }

#menu1  {width:100%;min-height:0rem;
position:fixed;z-index:2;
top:0;left:0%;
background:black;
opacity:.7;
margin:0;
padding: 1rem 0rem;
}

#menu1 ul {display:block; }

#menu1 li {display:inline-block;}

#menu1 li a {font-size:1.3rem;letter-spacing:1px;
font-weight:normal;width:auto;
background:transparent;
color:#fff;
padding:.2rem .5rem;
text-transform:uppercase;
}

#menu1 li a:hover { color:#fff;text-decoration:underline;}

/* ausblenden der zahlen */
#menu1 li a span {display:none; }


}