


/* = = = = = = = = = = = = = = = = = 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:#9F9F9F;
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:0;
text-align:left;
padding:0;
}

#menu1 li a {display:inline-block;
width:100%;
text-align:left;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
padding:.4rem 1rem ;
margin: 0;
background:firebrick;
color:#fff;
text-shadow:none;
text-transform:uppercase;
}

#menu1 li a:hover {background:#AFAFAF;
color:#000;
}

#menu1  #aktuell  a  {
background:#1f1f1f;
color:#fff;font-weight:bold;
}

/* die font-icons  im menu */

#menu1 li  a:before {display:inline-block;
font-family:'Font Awesome 5 Free';
content:"\f35a";
font-style: normal;
font-variant-caps: normal;
font-variant-ligatures: normal;
font-weight: 900;/* Weight of the font (by fontawesome)- use:
               - 400 for Regular and Brands symbols;
               - 900 for Solid symbols. */
text-rendering: auto;
-webkit-font-smoothing: antialiased;
text-decoration: none;
margin-right:.4rem;
color:#fff;
font-size:1.3rem;
transition:all .3s ;
}

/* - - - - - 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:1.5rem;right:1.5rem;
margin-left:0rem;
margin-top:0rem;
background:transparent;
color:#fff;
cursor:pointer;
height:5rem;
line-height:5rem;
width:5rem;
font-size:3rem;
border-radius: .4rem;
transition:all 1s;
}


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

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
margin-left:0;
}

/* ändert farbe beim menü-button */
input#open:checked ~  label.button-open .fas {
color:firebrick
}



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

/* ==================================== ab 480 pixel ================================== */
@media (min-width: 480px) {

#menu1 li {
margin:0 6rem 0 6rem; }

}




/* ==================================== ab 580 pixel ================================== */
@media (min-width: 580px) {

#menu1 {width:70%; }

#menu1 li {
margin:0 2rem 0 2rem; }


/* menü-öffnen-schalter  formatierung */
label.button-open .fas {
top:1.5rem;right:3rem; }

}

/* ==================================== ab 760 pixel ================================== */
@media (min-width: 760px) {

#menu1 {width:50%; }

}


/* ==================================== ab 1024 pixel ================================== */
@media (min-width: 1024px) {

/* menu-schalter versteckt */
label.button-open {display:none;
}


/* menu sichtbar */
#menu1 {position:static;
background:#fff;
height:0%;width:100%;
margin-top:0rem;
margin-left:0;
padding:.3rem;
box-shadow:none;
}

#menu1 ul  {
margin:0rem;
padding:1rem;text-align:center;
}

#menu1 li  {display:inline-block;
margin:0;
padding:0 0rem;
}

#menu1 li a {
text-decoration : none;
font-size:1.5rem;
letter-spacing:.2rem;
padding:.6rem .8rem ;
margin: 0;
background:#fff;
color:#000;
border-radius:.5rem;
}

#menu1 li a:hover {background:transparent;
color:#fff;
background:#b22222;background:#757575;
}

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

/* die font-icons  im fuss-menu */

#menu1 li  a:before {color:#CFCFCF; }

#menu1 li  a:hover:before {color:#fff; }

#menu1 #aktuell  a:before {color:#fff; }
}



/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */