
/* = = = = = = = = = = = = = = = = = 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 {margin:0;POSITION:relative; }

#menu1 {display:table;
width:100%;
margin:0;margin-left:-200vw;
padding:0;
transition:all 2s;
}

#menu1 ul {
height:38rem;
display:table-cell;
vertical-align:middle;text-align:left;
background:#2f2f2f;
margin:0;
padding:1rem 0 1rem 2rem;
}

#menu1 li {list-style-type: none;
display:block;
text-align:left;
padding:0rem;
margin:.1rem .1rem;
}

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.4rem;
letter-spacing:1px;
padding:.4rem .6rem .4rem .4rem;
margin: 0;
background:transparent;
color:#fff;
font-weight:normal;
text-transform:uppercase;
}

/*  icon */

#menu1 li a:before{display:inline-block;
color:gold;
text-align:left;
margin:0;
padding: 0 2.1rem 0 .2rem;
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:"\f06c";
width:1rem;height:1rem;
transition:all .1s;
}

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

/*  hover und aktuell angezeigter link  */

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

#menu1  li#aktuell a {background:transparent;
color:#fff;
}

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

/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
POSITION:absolute;
top:0rem; right:0rem;
z-index:2;
padding:0rem;
background:#1f1f1f;
color:#F0DB77;
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:absolute;
top:0rem; right:0rem;
z-index:3;
cursor:pointer;
background:firebrick;
color:#fff;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
opacity:0;
transition:all 1s;
}

/*  menü-schaltfunktion  */

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



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


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

#menu1 ul {padding:0 0 0 5rem; }

}


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

/* menue-button und close-button ausschalten */
nav label.button-open,nav label.button-close {display:none; }

#menu1 {margin:0; }

#menu1 ul {height:6rem;padding:.5rem 1rem 1rem 1rem; text-align:right; background:rgba(0,0,0,.5)}

#menu1 li {display:inline-block;margin:0rem }
#menu1 li a:hover {color:#000;background:linear-gradient(to right,lemonchiffon,antiquewhite,lemonchiffon);border-radius:.1rem; }
#menu1  li#aktuell a {color:#fff;}

}