
/* = = = = = = = = = = = = = = = = = 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;
}

#menu1 {display:table;
position:fixed;;z-index:2;
top:0;left:0;
height:100vh;
width:100%;
margin-top:-250%;
padding:0;
background:#444548;
transition:all 2s ease-out;
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
list-style: none;
margin:0 auto;
padding:0rem 1rem;
}

#menu1 li {
padding:0;
margin:.2rem .1rem;
}

#menu1 li a {
text-align:center;
text-decoration : none;
font-size:1.7rem;
letter-spacing:6px;
padding:.1rem 1rem ;
background:transparent;
color:#BACFCF;
font-weight:normal;
text-transform:none;
}


/*  hover und aktuell angezeigter link  */
#menu1 li a:hover {background:#EFEFEF;
color:#000;
}

#menu1  #aktuell a {background:#6D9696;
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:3;
padding:0rem;
background:#436370;
color:white;
font-size:2rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;box-shadow:none;
}


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

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

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:1;
}


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



/* ==================================== ab 760 pixel ================================== */

@media (min-width: 760px) {

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

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

#menu1  {height:0rem;position:relative;
margin:0;
padding: 2rem 0rem;
}

#menu1 ul { text-align:center;}

#menu1 li {display:inline-block; }

#menu1 li a {font-size:1.3rem;
letter-spacing:0px;
background:transparent;
padding:.2rem .5rem;
text-transform:uppercase;
}

#menu1 li a:hover {background:white;color:black; }


}