
/* = = = = = = = = = = = = = = = = = 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 (z.b. Logo, Info, Inhalt, Fuss o.ä.) definiert */
/* ############################################################ */

#nav {margin:0;height:0;
padding:0;overflow-x:hidden;
}

#menu1 {display:table;
position:absolute;z-index:2;
top:0%;right:0%;
height:100vh;
width:100%;
margin-top:-200%;
padding:0;
background:transparent;
transition:all 2s ease-out;
background:#77B82A; /* IE9 */
background:rgba(119,184,42,1.0);
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
margin:0 auto;
padding:0rem 1rem;

}

#menu1 li {list-style-type : none;display:block;
margin:0rem;
text-align:center;
padding:0;
font-weight:normal;
}

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.6rem;
font-weight: 700;
letter-spacing:3px;
padding:.4rem 1rem ;
margin: 0 -4px;
background:transparent;
color:#000;
text-shadow:none;
text-transform:uppercase;
}

#menu1 li a:hover {background:transparent;
color:#FFF;
}

#menu1 #aktuell a {background:transparent;
color:#FFF;
}

#menu1  .fas ,
#menu1  .fab  ,
#menu1  .far {color:#000;font-size:2.2rem;
text-shadow:0 0 1px black;
transition:transform .3s;
}

#menu1  .fas:hover ,
#menu1  .fab:hover  ,
#menu1  .far:hover {color:#FFF;font-size:2.2rem;
text-shadow:0 0 1px black;transform:rotate(45deg);
}


/*  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:3;
margin:0;
padding:0rem;
background:transparent;
color:white;font-size:2rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;box-shadow:none;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-top:0;
transition:all 1.5s ease-out;
}

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:1;
}



/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */

/* ==================================== ab 580 pixel ================================== */

@media (min-width: 580px) {

#menu1  { width:70vw;box-shadow: -1px -1px 3px black;}

}


/* ==================================== ab 760 pixel ================================== */

@media (min-width: 760px) {

#menu1  { width:50vw; height:35rem;
margin:0;
background:rgba(119,184,42,.7);
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-top:-200%;
transition:all 8s ease-out;
}

}


/* ==================================== ab 960 pixel ================================== */
@media (min-width: 960px) {

#menu1  { height:40rem; }

}