


/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* -------------------------------------- */
/* diese datei enthält das HAUTPMENÜ */
/* -------------------------------------- */

/* ############################################################ */
/* HAUPT-MENUE */
/* ############################################################ */

/* - - - - - MENU FORMATIERUNG - - - - - */

#nav {margin:0;
padding:0;
}

#menu1 {display:table;
position:absolute;
height:100vh;
width:100%;margin-top:-160vh;
top:0%;left:0%;
padding:0;
background:transparent;
transition:all 1s ease-out;
}

#menu1 ul {height:100%;display:table-cell;
vertical-align:middle;background:#2F2F2F;
text-align:center;
margin:0 auto;
padding:0rem 1rem;
}

#menu1 li {list-style-type : none;display:table;width:100%;
margin:0rem;
text-align:center;
padding:0;
height:14.28%;
line-height:14.28%;
}

#menu1 li a {display:table-cell;vertical-align:middle;
width:100%;
text-align:center;
text-decoration : none;
font-size:1.5rem;
line-height:1.6rem;
letter-spacing:6px;
padding:.4rem 1rem ;
margin: 0 -4px;
background:transparent;
color:#fff;
text-shadow:none;
text-transform:uppercase;font-weight:bold;
}

#menu1 li a span{text-transform:none;
letter-spacing:1px;font-weight:normal;
}

#menu1 li a:hover {
border: 3px dotted white;
box-shadow:inset 0px 0px 3px #3F3F3F;
}


/* die unterschiedlichen link-farben */
#menu1 li:nth-child(1) {background:#1E88E5; }
#menu1 li:nth-child(2) {background:#43A047; }
#menu1 li:nth-child(3) {background:#FFD600; }
#menu1 li:nth-child(4) {background:#E65100; }
#menu1 li:nth-child(5) {background:#546E7A; }
#menu1 li:nth-child(6) {background:#26A69A; }
#menu1 li:nth-child(7) {background:#B71C1C; }




/* - - - menü-oeffnen-schalter  formatierung - - - */

/* menü-öffnen-schalter  formatierung */
#nav label.button-open {display:inline-block;
text-align:center;
z-index:2;
position:absolute;
top:1rem;left:1rem;
margin-left:0rem;
margin-top:0rem;
background:transparent;
cursor:pointer;
height:5rem;
line-height:5rem;
width:5rem;
border-radius:50%;
}


/* - - - menü-schließen-schalter  formatierung - - - */

#nav label.button-close  {display:inline-block;
position: absolute;
top:1rem;left:1rem;
z-index:2;
cursor:pointer;
background:transparent;
text-align:center;
vertical-align:middle;
height:5rem;
width:5rem;
line-height:5rem;
border-radius:50%;opacity:0;
}

#nav  .fas ,
#nav  .fab ,
#nav  .far  {display:inline-block;
margin:0rem;
padding: 0;
line-height:5rem;
font-size:3rem;
background:transparent;
color:#fff;
}

/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-top:0;
}

/* wechselt zw. menue-öffnen-button und menue-schließen-button */

input#open-menue:checked ~  label.button-open  {
opacity:0; }

input#open-menue:checked ~  label.button-close  {
opacity:1; }




/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN */
/* ############################################################ */

/* ==================================== ab 580 pixel ================================== */

@media (min-width: 580px) {

#menu1  {height:40vh;  }

}


/* ==================================== ab 640 pixel ================================== */

@media (min-width: 640px) {

#menu1  {height:100vh;  }

}


/* ==================================== ab 760 pixel ================================== */

@media (min-width: 760px) {

#menu1  {height:40vh;  }

}


/* ==================================== ab 800 pixel ================================== */

@media (min-width: 800px) {

#menu1  {height:60vh;  }

}



/* ==================================== ab 1024 pixel ================================== */

@media (min-width: 1024px) {

/* menu-schalter versteckt */
#nav label.button-open ,
#nav label.button-close {display:none;
}

/* menu sichtbar */
#menu1 {z-index:4;position:fixed;width:28rem;
background:transparent;
top:0;left:0;
height:100%;
margin:0;
padding:0rem;text-align:center;
box-shadow:none;
}

#menu1 ul  {
margin:0rem;width:100%;height:100vh;
padding:0rem;text-align:center;
border-radius:0;
}

#menu1 li  {display:table;width:100%;
margin:0rem ;
padding: 0rem 0rem;
}

#menu1 li a {display:table-cell;vertical-align:middle;
width:100%;
text-decoration : none;
font-size:1.3rem;
line-height:1.6rem;
letter-spacing:1px;
padding:0 .5rem;
margin: 0;
color:#fff;
}





}


/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */