

/* = = = = = = = = = = = = = = = = = 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 :36rem;
position:absolute;
top:0rem;left:50%;
margin-left:-18rem;
background:#4F4F4F;
padding: 10rem 0 1rem 0;
margin-top:-130vh;
border:solid .4rem orange;
transition:all 2s;
}

#menu1 ul {display:block;
text-align:center;
margin:0 auto;
padding:0rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0;
}

#menu1 li a {
text-align:center;
text-decoration : none;
font-size:1.5rem;
line-height:2.0rem;
letter-spacing:.4rem;
padding:.4rem 1rem ;
margin: 0;
color:gold ;
text-transform:uppercase;
}

#menu1 a:hover  {
color:#fff;
}

#menu1  #aktuell  a  {
color:#efefef;
}


/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-schalter wird angezeigt-  formatierung */
label {display:inline-block;
z-index:2;
position:absolute;
top:0rem;left:50%;
margin-left:-3rem;
background:#9b263d;
cursor:pointer;
height:3rem;
line-height:3rem;
width:6rem;
box-shadow:0px 0px 0 3px orange;

}

.logo label .fa {font-size:2.6rem;display:inline-block;
color:gold;line-height:3rem;height:3rem;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein */
input[type=checkbox]:checked ~ #menu1  {
margin-top:-6rem;
height:140vh;
}





/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */




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

/* menu-schalter versteckt */
label{
display: none;
}

/* margin-top-ausgleich weil menü-schalter wegfällt */
input[type=checkbox]:checked ~ #menu1  {
margin-top:0rem;
}


/* menu sichtbar */
#menu1 {background:transparent;
height:0%;display:table;width:100%;
margin-top:0;
position:absolute;
margin-left:0;
padding:.5rem;
top:1.5rem;left:0%;
border:none;
}

#menu1 ul  {
margin:0;
padding:0;
}

#menu1 li  {display:inline-block;
margin:0;
padding:0;
}

#menu1 li a {
background:#9B263D;
line-height:3.6rem;
border-bottom:solid .3rem gold;
width:100%;
letter-spacing:1px;
}

#menu1 li a:hover {
color:#000;
background:gold;
}

#menu1  #aktuell  a  {
color:#000;
background:gold;
letter-spacing:0rem;
}


}

/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */
