
/* = = = = = = = = = = = = = = = = = 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 */
/* ############################################################ */



#menu1 ul {margin:0;padding:0;}

#menu1 li {display:inline-block;
width : 100%;margin:0;
list-style-type: none;
padding-left:2rem;
text-align:left;
}

#menu1 li a {display:block;font-weight:normal;
height:3.2rem;
line-height:3.2rem;
text-decoration : none;
color :#fff;
letter-spacing:0rem;
text-indent:-2.5rem;padding-left:1rem; /* rückt gfls eine zweite zeile ein*/
}

#menu1 li a:hover {
color : #fff;
}

/* die font-icons (pfeile) im menü */

#menu1 li a:before {
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. */
padding-right:1rem;
content:"\f2e5";
color:orangered;
}

#menu1 li a:hover:before {
content:"\f2e5";
color:#fff;
}

#menu1 #aktuell a {
color:gold;
}

#menu1 #aktuell  a:before {
content:"\f2e5";
color:gold;
}


/* ############################################################ */
/* M E D I A   Q U E R I E S */
/* CSS Bildschirmabfragen */
/* ############################################################ */


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

#menu1 {font-size:1.4rem;padding:1rem 1rem }

}