
/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* alle anderen möglichen menüs sowie auch allgemeine links im text bzw. eventuelle "Weiter-(Button-)Links"
sind in der Datei "format.css"  definiert */
/* ############################################################ */


/*  dieses template benötigt kein menü */


/* -------------------------------------- */
/* diese datei enthält das HAUTPMENÜ */
/* -------------------------------------- */

/* ############################################################ */
/* HAUPT-MENUE */
/* ############################################################ */

/* - - - - - MENU FORMATIERUNG - - - - - */

#nav {margin:0;height:0;
padding:0;
}

#menu1 {display:table;
position:absolute;z-index:2;
top:0%;left:0%;
height:100vh;
width:100%;
margin-left:-200vw;
padding:0;
background:transparent;
transition:all 2s ease-out;
}

#menu1 ul {display:table-cell;
background:black;
background-image: linear-gradient(to right , rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
background-size: 125px 125px;
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;
letter-spacing:3px;
padding:.4rem 1rem ;
margin: 0 -4px;
background:transparent;
color:#fff;
text-shadow:none;
text-transform:uppercase;
}

#menu1 li a:hover {background:transparent;
color:gold;
}


/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
#nav label.button-open {display:inline-block;
text-align:center;
position:absolute;
top:0rem; left:0rem;
z-index:2;
margin:0;
padding:0rem;
background:rgba(0,0,0,.2);
color:#fff;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
}


/*  menü-schließen-schalter  formatierung  */

#nav label.button-close  {display:inline;
position: absolute;
top:0rem; left:0rem;
z-index:3;
cursor:pointer;
color:#fff;
text-align:center;
vertical-align:middle;
height:4rem;
width:4rem;
line-height:4rem;
transition:all 1s;
opacity:0;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin-left:0;
transition:all 1.5s ease-out;
}

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:0;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
opacity:1;
transform:rotate(720deg);
transition:all 3s;
}




