


/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */




/* ############################################################ */
/* HAUPT-MENUE */
/* ############################################################ */

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

nav {margin:0;
padding:0;
}

#menu1 {display:table;
position:absolute;
z-index:2;
top:0%;left:0%;
height:110vh;
width:100%;
margin-left:-200vw;


padding:0;
background:transparent;
transition:all 1s ease-out;
}

#menu1 ul {display:table-cell;
vertical-align:middle;
background:#4682B4;
text-align:center;
margin:0 auto;
padding:0rem 1rem;
box-shadow:1px -10px 20px  #3F3F3F;
}

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

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.6rem;
letter-spacing:3px;
padding:.4rem 1rem ;
margin: 0 -4px;
background:transparent;
color:#fff;
text-shadow:none;
text-transform:uppercase;
border:solid 1px transparent;
}

#menu1 li a:hover {background:transparent;
color:#fff;border:solid 1px white;
}


/* - - - menü-oeffnen-schalter  formatierung - - - */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
z-index:3;
position:absolute;
top:1.7rem;left:1.7rem;
margin:0;
padding:0rem;
background:transparent;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;background:#fff;box-shadow:  0 0 2px  #000;
}


/* - - - menü-schließen-schalter  formatierung - - - */

nav label.button-close  {display:inline;
position: absolute;
top:1.7rem;left:1.7rem;
z-index:3;
cursor:pointer;
background:#fff;
text-align:center;
vertical-align:middle;
height:4rem;
width:4rem;
line-height:4rem;
border-radius:50%;
transition:transform 3s;
opacity:0;
}

nav  .fas ,
nav  .fab ,
nav  .far  {display:inline;
margin:0rem;
padding: 0;
width:4rem;
height:4rem;
line-height:4rem;
font-size:3.4rem;
background:transparent;
color:#4682B4;
}


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

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-left: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;transform:rotate(720deg); }



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


/* ==================================== ab 760 pixel ================================== */

@media (min-width: 760px) {

#menu1  { width:50%;height:41.5rem; }

}


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

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

/* menu sichtbar */
#menu1 {position:fixed;z-index:4;
background:transparent;
top:0;left:0;
height:0%;width:100%;
margin:0;
padding:0rem;text-align:center;
}

#menu1 ul  {background:linear-gradient(to right, lightskyblue, steelblue, lightskyblue);
margin:0rem;width:100%;
padding:0rem;text-align:center;
border-radius:0;
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3),
inset -2px 0 6px 2px rgba(255, 255, 255, 0.6),
inset 2px 0 6px 2px rgba(255, 255, 255, 0.6),
inset -10px 0 5px 1px rgba(155, 155, 155, 0.1),
inset 10px 0 5px 1px rgba(155, 155, 155, 0.1);
}

#menu1 li  {display:inline-block;
margin:0rem -.24rem ;
padding: 0rem ;vertical-align:top;
}

#menu1 li a {display:inline-block;
width:100%;
text-decoration : none;
font-size:1.3rem;
letter-spacing:.1rem;
padding:1.6rem 1rem ;
margin: 0;
color:#fff;
}

#menu1 li a:hover {background:#fff;
color:steelblue;box-shadow:none;
border:solid 1px transparent;box-shadow:
inset -2px 0 3px 2px rgba(255, 255, 255, 0.6),
inset 2px 0 3px 2px rgba(255, 255, 255, 0.6),
inset -10px 0 10px 1px rgba(155, 155, 155, 0.1),
inset 10px 0 10px 1px rgba(155, 155, 155, 0.1);
}

}


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