

/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */


/* = = = = = = = = = = = = = = = = = MENÜ 1 = = = = = = = = = = = = = = = = = = = = = = = = = */


/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {height:100%;
z-index:1;
width:100%;
position:absolute;
top:0%;left:50%;
margin-left:-50%;
background:#F4F4F4;
padding: 6rem 0 1rem 0;
margin-top:-120vh;
transition:all 2s;
}

#menu1 ul {display:block;width:30rem;background:#3B3B3B;
text-align:center;text-align:left;
margin:0 auto;
padding:1rem ;
border-radius:1rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0;text-align:left;
}

#menu1  a {display:inline-block;
text-align:center;text-align:left;
text-decoration : none;
font-size:1.6rem;
line-height:1.9rem;
letter-spacing:.2rem;
padding:.4rem 1rem ;
margin: 0;
color:#D1B0A3;
text-transform:uppercase;
transition:all .4s ;
}

#menu1 a:hover  {padding-left:2rem;
color:#fff;text-decoration:underline;
}

#menu1  #aktuell  a  {
color:#fff;
}

/* die font-icons  im menu */

#menu1 li  a:before {display:inline-block;
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 400;/*  Weight of the font (mandatory)
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\f07b";
margin-right:1rem;
color:#BFBFBF;
font-size:1.9rem;
}

#menu1 li  a:hover:before {
color:red;
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 400;/*  Weight of the font (mandatory)
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\f07c";
}

#menu1  #aktuell   a:before {
display:inline-block;
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 400;/*  Weight of the font (mandatory)
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\f07c";
margin-right:1rem;
color:#fff ;
font-size:1.9rem;
}

/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-öffnen-schalter  formatierung */
label.button-open {display:inline-block;vertical-align:middle;
z-index:2;
position:absolute;
top:0rem;left:50%;
margin-left:-2rem;
margin-top:0rem;
background:#fff;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
background:#fff;
box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
border-radius: 3px;transition:all 2.5s;
}

label.button-open .fas {font-size:2rem;display:inline-block;
color:#000;line-height:4rem;height:4rem;
}


/* menü-schliessen-schalter  formatierung */
label.button-close {display:inline-block;vertical-align:middle;
z-index:2;
background:#BE917E;
box-shadow: 0 0 3px 0 rgba(255,255,255,0.6);
position:absolute;
top:0rem;left:50%;
margin-left:-2rem;
margin-top:0rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
border-radius: 3px;
}

label.button-close .fas {font-size:2rem;display:inline-block;
color:#fff;line-height:4rem;height:4rem;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
margin-top:0rem;
}

/* schaltet zwischen 'menu-öffen-button' und 'menu-schliessen-button' */
input#open:checked ~ .button-open  {
visibility:hidden
}


/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */

/* ===================================== ab 1024 pixel ================================= */

@media (min-width: 1024px) {

/* menü verschmälern */

#menu1 {box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
width :40rem;
margin-left:-20rem;
}


}






/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */