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

#menu1 {display:table;POSITION:fixed;
top:0;right:0;
height:100%;width:100%;
margin:0;margin-right:-200vw;
padding:0;
transition:all 2s;
}

#menu1 ul {
display:table-cell;
vertical-align:middle;text-align:right;
background:#fff;
margin:0;
padding:0rem 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:left;
text-decoration : none;
font-size:1.6rem;
letter-spacing:2px;line-height:3rem;
padding: 0rem 0rem;
margin: 0;
background:transparent;
color:#1f1f1f;
font-weight:normal;
text-transform:uppercase;
}

/*  icon */

#menu1 li a:before{display:inline-block;
color:black;
text-align:left;
margin:0;
padding: 0 2rem 0 .5rem;
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";
transform:scale(.8);
width:1rem;
margin-right:1rem;
transition:all .1s;
}

#menu1 li a:hover:before {
color:tomato;
content:"\f138";
font-weight: 900;
}

/*  hover und aktuell angezeigter link  */

#menu1 li a:hover {background:transparent;
color:black;text-decoration:underline;
}

#menu1  li#aktuell a {background:transparent;
color:black;
text-decoration:none;font-weight:bold;
}

#menu1 li#aktuell a:before {
color:firebrick;
content:"\f138";
font-weight: 900;
}

/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
POSITION:absolute;
top:1rem; right:1rem;
z-index:2;
padding:0rem;
background:transparent;
color:dimgray;
height:3rem;
width:3rem;
line-height:3rem;
font-size:2rem;
cursor:pointer;
}


/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
POSITION:fixed;
top:1rem; right:1rem;
z-index:3;
padding:0rem;
background:transparent;
color:firebrick;
height:3rem;
width:3rem;
line-height:3rem;
font-size:2rem;
cursor:pointer;
opacity:0;
transition:all 2s;
}

/* 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 2s ease-out;
}



/* ############################################################ */
/* M E D I A   Q U E R I E S */
/* CSS Bildschirmabfragen */
/* ############################################################ */


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

nav label.button-open,nav label.button-close {display:none; }

nav {padding: 0rem 0rem; }

#menu1 {margin:0rem 0;POSITION:relative }
#menu1 ul {background:transparent;height:0;padding:0 1rem;text-align:center; }
#menu1 li {display:inline-block; }
#menu1 li a {font-size:1.2rem; letter-spacing:0px;line-height:1rem; } 
#menu1 li a:before {margin-right:0rem; }

}