
/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */



/* = = = = = = = = = = = = = = = = = = = = = =  */
/* MENÜ FORAMTIERUNG                            */
/* = = = = = = = = = = = = = = = = = = = = = =  */

nav {display:block; }

#menu1 {display:table;
width:100%;height:100%;
POSITION:fixed;z-index:0;
top:0%;left:0%;
height:100%;width:100%;
margin-left:0rem;
margin-top:0rem;
background:transparent;
padding: 0;
opacity:0;
transform:scale(0);
transition:all 2s;
}

#menu1 ul {display:table-cell;
vertical-align:middle;text-align:center;
background:#1f1f1f;
border:solid 1px rgba(0,0,0,.6);
box-shadow:0 0 20px rgba(0,0,0,.7);
margin:0;
padding:0 0 0 0rem;
}

#menu1 li {list-style-type : none;
margin: 0 auto;
margin-top:.2rem;
margin-bottom:.2rem;
width:28rem;
padding: 0rem;
}

#menu1 li a {display:block;
text-align:left;
text-decoration : none;
font-size:1.6rem;
letter-spacing:1px;
padding:.3rem 1rem ;
background:#412a2a;
color:#a27c7c;
text-transform:none;
}

#menu1 i {color:#D8D8D8; }

/*  hover und aktuell angezeigter link  */
#menu1 li a:hover {background:#AE8C8C;
color:#3F2C2C;
}

#menu1  #aktuell a {background:#705353;
color:#CEB9B9;
}


/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
POSITION:fixed;
top:0rem; right:0%;
z-index:3;
padding:0rem;
background:#fff;
color:#6C4242;
font-size:2rem;
cursor:pointer;
height:3.5rem;
width:3.5rem;
line-height:3.5rem;
transition:all 6s ;
}

/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
POSITION: fixed;
top:0rem; right:0%;
z-index:4;
cursor:pointer;
background:#fff;
color:#6C4242;
height:3.5rem;
width:3.5rem;
line-height:3.5rem;
opacity:0;
transition:all 2s ease-out;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
opacity:1;
transform:scale(1);
z-index:3;
transition:all 2s ease-out;
background:rgba(0,0,0,.7);
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
opacity:1;
margin-top:0rem;
transition:all 2s ease-out;
}

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:0;
transition:1s ease-out;
}



/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */



/* ==================================== ab 760 pixel ================================== */

@media (min-width: 760px) {

#menu1 {top:50%;left:50%;
height:50rem;width:50rem;
margin-left:-25rem;
margin-top:-25rem;
}

#menu1 li a {letter-spacing:4px; }

nav label.button-open,
nav label.button-close  {
height:5rem;
width:5rem;
line-height:5rem;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
top:50%; right:50%;
margin-top:-2.5rem;
margin-right:-19rem;
transform:rotate(720deg);
}

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:0;
transition:1s ease-out;
}


}


/* +  +  +  +  + +  +  +  +  +  C O D E ENDE  +  +  +  +  +  +  +  +  +  + */