
/* = = = = = = = = = = = = = = = = = 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 {width:100%;
display:block;
POSITION:relative;
margin:0;
overflow:hidden;
}

#menu1 {display:table;
height:100%;width:100%;
margin:0;margin-left:-200vw;
padding:0;
transition:all 2s;
}

#menu1 ul {
height:38rem;/* mindesthöhe */
display:table-cell;
vertical-align:middle;text-align:left;
background:rgba(6,14,31,.7);
margin:0;
padding:1rem 0 1rem 2rem;
}

#menu1 li {list-style-type: none;
display:block;
text-align:left;
padding:.2rem 0rem 0 0;
margin:.1rem .1rem;
}

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.4rem;
letter-spacing:1px;
padding:.4rem .4rem ;
margin: 0;
background:transparent;
color:#fff;
font-weight:normal;
text-transform:uppercase;
}

/*  icon */

#menu1 li a:before{display:inline-block;
color:#fff;
text-align:left;
margin:0;
padding: 0 2rem 0 .5rem;
font-family:'Font Awesome 6 Free';/* - 'Font Awesome 6 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 6 Brands' for Brands symbols. */
font-weight: 400;/*  Weight of the font
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\4f";/*  PUNKT SYMBOL */
width:1rem;height:1rem;
transition:all .1s;
}

#menu1 li a:hover:before {
color:#A8C1C1;
content:"\4f";
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:orange;
content:"\4f";/*  PUNKT SYMBOL AKTUELL */
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:0%;
margin-right:0rem;
z-index:2;
padding:0rem;
background:#283335;
color:#fff;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
font-weight:bold;
}

/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
POSITION:absolute;
top:0rem; right:0%;
margin-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 2s;
font-weight:bold;
}



/* 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 580 pixel ================================= */
@media (min-width: 580px) {

nav label.button-open,nav label.button-close {display:none; }

#menu1 {margin:0;}
#menu1 ul {padding:1rem 0 1rem 1rem;
background:linear-gradient(to right , rgba(6,14,31,.6) 50%,transparent 50% );}

}

/* ===================================== ab 1280 pixel ================================= */
@media (min-width: 1280px) {

#menu1 {width:70rem;}

}
