


/* = = = = = = = = = = = = = = = = = 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 auto;height:0; }

#menu1 {text-align:center;display:table;
width:26rem;height:100vh;
POSITION:fixed;z-index:0;
top:0rem;left:50%;
margin-top:-200vh;
margin-left:-13rem;
background:#2f2f2f ;
padding: 0 ;
transition:all 2s;
border:solid 1px black;
box-shadow:0 0  30px rgba(0,0,0,.3);
}

#menu1 ul {display:table-cell;vertical-align:middle;
text-align:left;
margin:0 auto;
padding:0 0 0 2rem;
}

#menu1 li {list-style-type:none;display:block;
margin:0;
padding:.3rem 0rem .3rem 0rem ;
}

#menu1 li a {width:26rem;
text-align:left;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
color:#fff;
font-weight:normal;
text-transform:none;
}

#menu1 li a span {color:gold; }

/*  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:gold;
color:#000;
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:black;
color:red;
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;
z-index:1;
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) {

/* menü-schalter  ausblenden */
nav label.button-open {display:none; }
nav label.button-close {display:none; }

#menu1  {width:100%;height:0rem;
position:fixed;z-index:2;
top:0;left:0%;
opacity:1;
margin:0;
padding: 1rem 2rem;
box-shadow:0 0 6px black;
}

#menu1 ul {text-align:center;padding:0;}
#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 .2rem;
}

}


/* ==================================== ab 1200 pixel ================================== */

@media (min-width: 1200px) {

#menu1  {padding: 1rem 10rem; } /* bei nicht so langen links kann man die padding-werte zu verringern */

}
