


/* = = = = = = = = = = = = = = = = = 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  definiert */
/* ############################################################ */



/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {display:table;
z-index:1;
width :100%;
POSITION:fixed;
top:0%;left:0%;
height:100vh;
margin-top:0rem;
margin-left:-120vw;
background:#3E2723;
padding:  0;
text-align:center;
box-shadow: 0 0 3px black;
transition:all 1s ease-out;
}

#menu1 ul {display:table-cell;
vertical-align:middle;
text-align:center;
margin:0;
padding:0rem;
}

#menu1 li {list-style-type : none;display:block;
margin:0 2rem 0 2rem;
text-align:left;
padding:0;
}

#menu1 li a {display:inline-block;
text-align:left;
text-decoration : none;
font-size:1.5rem;
letter-spacing:0px;
padding:.4rem 1rem ;
margin: .2rem;
color:#EFEBE9;
background:#6D4C41;
text-shadow:none;
text-transform:uppercase;
width:100%;
box-shadow:0px 1px 2px #000;
}

#menu1 li a:hover {background:#EFEBE9;
color:#212121;
}

#menu1  #aktuell  a  {
background:#A1887F;
}


/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-öffnen-schalter  formatierung */
label.button-open .fas {display:inline-block;
text-align:center;
z-index:2;
POSITION:fixed;
top:.5rem;right:.5rem;
margin-left:0rem;
margin-top:0rem;
background:transparent;
color:#fff;
text-shadow:0 0 1px black;
cursor:pointer;
height:5rem;
line-height:5rem;
width:5rem;
font-size:3rem;
transition:all 1s;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
margin-left:0;
}

/* schaltet animation bei den links ein  */
input#open:checked ~ #menu1 li a{
animation: fade-in  1.5s  ease-out backwards;
}

/* schaltet die animation-verzögerung bei den links ein  */
input#open:checked ~
#menu1 li:nth-child(1)  a  {animation-delay:200ms; }
input#open:checked ~
#menu1 li:nth-child(2)  a  {animation-delay:400ms; }
input#open:checked ~
#menu1 li:nth-child(3)  a  {animation-delay:600ms; }
input#open:checked ~
#menu1 li:nth-child(4)  a  {animation-delay:800ms; }
input#open:checked ~
#menu1 li:nth-child(5)  a  {animation-delay:1000ms; }
input#open:checked ~
#menu1 li:nth-child(6)  a  {animation-delay:1200ms; }
input#open:checked ~
#menu1 li:nth-child(7)  a  {animation-delay:1400ms; }




/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */


/* ==================================== ab 480 pixel ================================== */
@media (min-width: 480px) {

#menu1 li {
margin:0 5rem 0 5rem; }

}


/* ==================================== ab 600 pixel ================================== */
@media (min-width: 600px) {

#menu1 {width :50%; }

#menu1 li {
margin:0 2rem 0 2rem; }


}



/* ==================================== ab 1024 pixel ================================== */
@media (min-width: 1024px) {

/* menu-schalter versteckt */
label.button-open {display:none;
}


/* menu sichtbar */
#menu1 {position:static;
background:#3E2723;
height:0%;width:100%;
margin-top:0rem;
margin-left:0;
padding:.3rem;
box-shadow:none;
}

#menu1 ul  {
margin:0rem;
padding:1rem;text-align:center;
}

#menu1 li  {display:inline-block;
margin:0;
padding:0 .5rem;
}

#menu1 li a {
text-decoration : none;
font-size:1.5rem;
height:2.8rem;
line-height:2.8rem;
letter-spacing:.2rem;
padding:.2rem .2rem ;
margin: 0;
color:#EFEBE9;background:transparent;
box-shadow:none;
transition:all .2s ease-out;
}

#menu1 li a:hover {background:transparent;
color:#fff;
}

#menu1  #aktuell  a  {
background:transparent;
color:#fff;
}


/* icons im menu  */

#menu1 li a:before {display:inline-block;
font-family:'Font Awesome 5 Free';/* - 'Font Awesome 5 Free' for Regular and Solid symbols;
                                     - 'Font Awesome 5 Brands' for Brands symbols. */
font-weight: 900;/*  Weight of the font (mandatory)
                     - 400 for Regular and Brands symbols;
                     - 900 for Solid symbols. */
content:"\f030";
text-decoration: none;
letter-spacing:0rem;
text-shadow:1px 1px 2px black;
color:#EFEBE9;
padding-right:.5rem;
padding-left:0rem;
transform:scale(.8);
transition:all .3s ease-out;
}

#menu1 li a:hover:before {
color:#fff;
transform:scale(1) ;
}

#menu1  #aktuell   a:before  {
background:transparent;
color:red;
}




}



/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */