


/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */



/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {display:table;
z-index:1;
POSITION:fixed;
height:100%;
width:100%;
top:0%;left:0%;
padding:1rem ;
background:#452827;
box-shadow: 0 0 3px black;
transform: scale(0);
transition:all .3s linear;
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
margin:0;
padding:0rem;
}

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

#menu1 li a {display:inline-block;
width:100%;
text-align:center;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
padding:.4rem 1rem ;
margin: .2rem;
background:#5f4948;
color:#fff;
text-shadow:none;
text-transform:uppercase;
}

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

#menu1  #aktuell  a  {
background:#576c5a;
color:#fff;
}



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

/* menü-öffnen-schalter  formatierung */
label.button-open  {display:inline-block;
text-align:center;
z-index:2;
POSITION:fixed;
top:0rem;right:.0rem;
margin-right:0rem;
margin-top:0rem;
background:#000;
color:white;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
font-size:3rem;
border-radius: .4rem;
}


/* - - - infofenster-schließen-schalter  formatierung - - - */

label.button-close   {display:inline-block;
POSITION:fixed;
top:0rem;right:0rem;
z-index:2;
cursor:pointer;
text-transform:uppercase;
color:#5f4948;
background:white;
text-align:center;
height:4rem;
width:4rem;
line-height:4rem;
font-size:3rem;
border-radius: .4rem;
}


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

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
transform:scale(1);
}

/* wechselt zw. menue-öffnen-button und menue-schließen-button */
input#open:checked ~  label.button-open  {
opacity:0;
}



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



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

#menu1 li a {width:36rem; }

}


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

/* menu-schalter versteckt */
label.button-open ,
label.button-close {display:none;
}


/* menu sichtbar */
#menu1 {position:relative;
background:#768A78;
top:0%;left:0%;
height:0%;width:100%;
margin-top:0rem;
margin-left:0;
padding:0rem;
box-shadow:none;
box-shadow:0px 0px 5px #2F2F2F;
transform:scale(1);
}

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

#menu1 li  {display:inline-block;
margin:0;
padding:2rem .1rem ;
}

#menu1 li a {
width:100%;
text-decoration : none;
font-size:1.5rem;
letter-spacing:.2rem;
padding:.2rem  .6rem;
margin: 0;
color:#fff;
background:#5f4948;
transition:all .2s ease-out;
}

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

#menu1  #aktuell  a  {
background:#445355;
color:#fff;
}


}



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