


/* = = = = = = = = = = = = = = = = = 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  definiert */
/* ############################################################ */



/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {display:table;
z-index:1;
width :100%;
position:fixed;
top:0%;left:0%;
height:100vh;
margin-top:0rem;
margin-left:-120vw;
background:#fff;
padding:  0;
text-align:center;
box-shadow: 0 0 3px black;
transition:all 1s ease-out;
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
margin:0;
padding:0rem;
}

#menu1 li {list-style-type : none;display:block;
margin:0rem;
text-align:left;
padding:0;
}

#menu1 li a {display:inline-block;
text-align:left;
width:100%;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
padding:.4rem 1rem .4rem 2rem ;
margin: 0;
color:#fff;
text-shadow:none;
text-transform:uppercase;
background:black;
}

#menu1 a:hover  {
background:firebrick;
}

#menu1  #aktuell  a  {
color:gold;
text-shadow:none;
}



/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-öffnen-schalter  formatierung */
label#button-open .fas {display:inline-block;
text-align:center;
z-index:2;
position:fixed;
top:.4rem;right:.8rem;
margin-left:0rem;
margin-top:0rem;
background:#fff;
cursor:pointer;
font-size:2rem;
height:3.6rem;
line-height:3.6rem;
width:3.6rem;
box-shadow: 0 0 1px black;
border-radius: .4rem;
transition:all 1s ease-out;
}

/* menü-schließen-schalter  formatierung */
label#button-close .fas {display:inline-block;
text-align:center;
z-index:2;
position:fixed;
top:.4rem;right:.8rem;
margin-left:0rem;
margin-top:0rem;
background:#fff;
cursor:pointer;
font-size:2rem;
height:3.6rem;
line-height:3.6rem;
width:3.6rem;
box-shadow: 0 0 1px black;
border-radius: .4rem;
transition:all 1s ease-out;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
margin-left:0;
}

/* ausblendung menü-öffnen-schalter */
input#open:checked ~  label#button-open .fas {
color:crimson;
opacity:0;transform:rotate(720deg);
}

/* ändert farbe von menü-schliessen-schalter */
input#open:checked ~  label#button-close .fas {
color:crimson;
background:#EFEFEF;
}


/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */



/* ==================================== ab 360 pixel ================================== */
@media (min-width: 360px) {

#menu1 li {
margin:0 2rem 0 2rem; }

}



/* ==================================== ab 600 pixel ================================== */
@media (min-width: 600px) {

#menu1 {width :50%; }


}


/* ==================================== ab 1024 pixel ================================== */
@media (min-width: 1024px) {

/* menu-schalter versteckt */
label#button-open {display:none; }
label#button-close {display:none; }


/* menu sichtbar */
#menu1 {position:static;
background:transparent;
height:0%;width:100%;
margin-top:0rem;
margin-left:0;
padding:0;
box-shadow:none;
background:black
}

#menu1 ul  {
margin:0rem;
padding:0rem;text-align:center;
}

#menu1 li  {display:inline-block;
margin:0;
padding:0;
}

#menu1 li a {
width:100%;
padding:.5rem .7rem .5rem .5rem;
margin:0rem 0;
letter-spacing:1px;
color:#fff;
border-bottom:solid 5px firebrick;
}

#menu1 li a:hover {background:transparent;
border-bottom:solid 5px #fff;
}

#menu1  #aktuell  a  {
background:transparent;
border-bottom:solid 5px white;
color:white;
text-shadow:none;
}


}


/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */