
/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* alle anderen möglichen menüs sowie auch allgemeine links im text bzw. eventuelle "Weiter-(Button-)Links"
sind in der Datei "format.css"  definiert */
/* ############################################################ */


nav {
display:block;
margin:0;
}

#menu1 {display:table;POSITION:fixed;top:0;left:0;z-index:2;
height:100%;width:100%;
margin:0;margin-left:-200vw;
padding:0;
transition:all 2s;
}

#menu1 ul {
display:table-cell;
vertical-align:middle;text-align:left;
background:#1f1f1f;
margin:0;
padding:1rem 1rem 0rem 2rem;
}

#menu1 li {list-style-type: none;
display:block;
text-align:left;
padding:0rem;
margin:0rem;
}

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.4rem;
letter-spacing:1px;
padding:.5rem .6rem .4rem 0rem;
margin: 0;
background:transparent;
color:#DFDFDF;
font-weight:bold;
text-transform:uppercase;
}

/*  icon */

#menu1 li a:before{display:inline-block;
color:#E25100;
text-align:left;
margin:0;
padding: 0 2rem 0 0rem;
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 900;/*  Weight of the font
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\f138";
width:1rem;height:1rem;
transition:all .1s;
}

#menu1 li a:hover:before {
color:#DBDFE6;
content:"\f138";
font-weight: 900;
}

/*  hover und aktuell angezeigter link  */

#menu1 li a:hover {background:transparent;
color:#E25100;
}

#menu1  li#aktuell a {background:transparent;
color:#E25100;
}

#menu1 li#aktuell a:before {
color:white;
content:"\f138";
font-weight: 900;
}


/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
POSITION:fixed;
top:0rem; right:0%;
margin-right:0rem;
z-index:2;
padding:0rem;
background:transparent;
color:#E25100;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
}


/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
POSITION:fixed;
top:0rem; right:0%;
margin-right:-0rem;
z-index:3;
cursor:pointer;
background:transparent;
color:#DF0000;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
opacity:0;
transition:all .6s;
}




/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin:0;
transform:scale(1);
z-index:2;
transition:all 1s ease-out;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
opacity:1;
transition:all 1.5s ease-out;
}



/* ############################################################ */
/* M E D I A   Q U E R I E S */
/* CSS Bildschirmabfragen */
/* ############################################################ */


/* ===================================== ab 480 pixel ================================= */
@media (min-width: 480px) {

nav label.button-open,
nav label.button-close  {top:1rem; right:1rem; }

}


/* ===================================== ab 960 pixel ================================= */
@media (min-width: 960px) {

nav label.button-open,nav label.button-close {display:none; }

#menu1 {margin:1rem 0;POSITION:relative }

#menu1 ul {background:transparent;height:0;padding:0;text-align:right; }

#menu1 li{display:inline-block; }
#menu1 li a {font-size:1.2rem;  }

}