


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



/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* ############################################################ */


nav {
overflow:hidden;
color:#DFDFDF;
text-shadow:0 0 1px black;
padding:0;margin:0;
}

#menu  {display:table;POSITION:absolute;
top:50%; left:50%;
margin-top:-150px;/* -150px statt -140px weil oben noch der jquery-bildanzeiger drin ist */
margin-left:-140px;
width:280px;height:280px;
background:transparent;
padding:0rem;
background:rgba(255,0,0,.5);
border-top:solid 1px #2F2F2F;
border-bottom:solid 1px #1F1F1F;
}

#menu ul {height:100%;width:100%;
display:table-cell;vertical-align:middle;
padding:0 ;
margin:0;
}

#menu  li {list-style-type : none;display:block;
padding: .4rem .2rem ;
margin:0;
font-size:1.7rem;
}

#menu li span {cursor:pointer;
}

#menu  li span:hover {letter-spacing:1px;
color: white;
}

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

.section-content label.button-open  {display:block;
position: absolute;
z-index:101;
top:0%;right:50%;
margin-top:30px;margin-right:-160px;
text-align:center;
border-radius:0;
background:#BF3F3F;
color:#fff;
cursor:pointer;
box-shadow:0 0 1px black;
font-size:2rem;
width:4rem;
height:4rem;
line-height:4rem;
transition:all 1s;
}


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

.section-content label.button-close  {display:block;
position: absolute;
top:0%;right:50%;
margin-top:30px;margin-right:-160px;
z-index:101;
cursor:pointer;
background:#000;
color:white;
box-shadow:0 0 1px black;
text-align:center;
border-radius:0;
font-size:2rem;
width:4rem;
height:4rem;
line-height:4rem;
transition:all .4s;
}


/* - - - hover bei den menü-schaltern - - - */

.section-content label.button-close:hover {
background:#BF3F3F;
color:#fff;
}

.section-content label.button-open:hover {
background:#000;
color:#fff;
}




/* - - - toggle-funktion - - - */

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

/* schaltet menu ein/aus */
input#open-menue:checked ~ .content {
margin-top:-200vh;
transition:all 1s ease-out;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
opacity:0;
transition:all 1s;
}

/*  menue-oeffnen-button EIN / AUS */
input#open-menue:checked ~  label.button-open  {
opacity:1;
margin-right:-20px;
transition:all 1s;
}




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

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

.section-content label.button-close,
.section-content label.button-open  {
margin-right:-180px;
}

}


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

#menu  {
height:200px;
margin-top:-110px;/* -110px statt -100px weil oben noch der jquery-bildanzeiger drin ist */
}

#menu  li {padding:0rem .2rem }

}


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

#menu  {
height:320px;
width:320px;
margin-top:-160px;
margin-left:-160px;
}

#menu  li {padding: .4rem .2rem ; }

.section-content label.button-close,
.section-content label.button-open  {
margin-right:-205px;
}


}