
/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */


nav {width:100%;
display:block;
POSITION:relative;
margin:0;
overflow:hidden;
}

#menu1 {display:table;
height:100%;width:100%;
margin:0;margin-left:-200vw;
padding:0;
transition:all 2s;
}

#menu1 ul {
height:39rem;/* mindesthöhe */
display:table-cell;
vertical-align:middle;text-align:left;
background:rgba(65,33,10,.8);
margin:0;
padding:0 0 0 2rem;
}

#menu1 li {list-style-type: none;
display:block;
text-align:left;
padding:.2rem 0rem;
margin:0rem;
}

#menu1 li a {display:inline-block;
text-align:center;
text-decoration : none;
font-size:1.3rem;
letter-spacing:1px;
padding:.4rem 0rem ;
margin: 0;
text-shadow:0px 0px 1px rgba(0,0,0,.8);
background:transparent;
color:#fff;
font-weight:normal;
text-transform:uppercase;
}

/*  icon */

#menu1 li a:before{display:inline-block;
color:sandybrown;
text-shadow:0px 1px 0px rgba(0,0,0,.8);
text-align:left;
margin:0;padding: 0 2.5rem 0 0rem;
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 400;/*  Weight of the font
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\f192";
width:1rem;height:1rem;
transition:all .2s;
}

#menu1 li a:hover:before {
color:#fff;
content:"\f0e3";
font-weight: 900;
}

/*  hover und aktuell angezeigter link  */

#menu1 li a:hover {background:transparent;
color:#fff;
}

#menu1  li#aktuell a {background:transparent;
color:#fff;
}

#menu1 li#aktuell a:before {background:transparent;
color:#fff;
content:"\f0e3";
font-weight: 900;
}

/*  menü-oeffnen-schalter  formatierung  */

/* menü-öffnen-schalter  formatierung */
nav label.button-open {display:inline-block;
text-align:center;
POSITION:absolute;
top:0rem; right:0%;
margin-right:0rem;
z-index:2;
padding:0rem;
background:wheat;
color:#1f1f1f;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
}

/*  menü-schließen-schalter  formatierung  */

nav label.button-close  {display:inline-block;
text-align:center;
POSITION:absolute;
top:0rem; right:0%;
margin-right:-0rem;
z-index:3;
cursor:pointer;
background:sandybrown;
color:#fff;
font-size:2.2rem;
cursor:pointer;
height:4rem;
width:4rem;
line-height:4rem;
opacity:0;
transition:all 2s;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open-menue:checked ~ #menu1  {
margin:0;
transform:scale(1);
z-index:2;
transition:all 1s ease-out;
}

/*  menue-schließen-button EIN / AUS */
input#open-menue:checked ~  label.button-close  {
opacity:1;
transition:all 2s ease-out;
}



/* ############################################################ */
/* M E D I A   Q U E R I E S */
/* CSS Bildschirmabfragen */
/* ############################################################ */


/* ===================================== ab 760 pixel ================================= */
@media (min-width: 760px) {

nav label.button-open,nav label.button-close {display:none; }

#menu1 {margin:0; }

#menu1 ul {height:34rem;/* mindesthöhe */
background:transparent;
background:linear-gradient(to right , rgba(65,33,10,.8) 50%,transparent 50% );
}

}