/* Menu Typography - Beginn */

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url("../tq5_fonts/oswald/oswald-400.woff2") format('woff2');
}

nav {
	font-family: Oswald; /* bestimmt die Font-Family fürs Menu */
}

#container {
  margin: 0 auto; /* irgendwie hat das keinen Einfluss! */
  max-width: 1040px;/*890px;*/
}

.nav p { text-align: center; }
 .toggle, [id^=drop] {
 display: none;
}

nav {
  margin: 0;
  padding: 0;
  background-color: #F0F8FF;/* ändert den Background vom Logo */
}

#logo {
  /*display: block;*/
  padding: 0px 7px 7px 15px;
  float: left;
  font-size: 20px;
  line-height: 10px; /* tq */ color: red;/* hier kann ich die Logo-Fontfarbe definieren */
}

nav:after {
  content: "";
  display: table;
  clear: both;
}

nav ul {
  float: right;
  padding: 15px 0px 0px 0px;
  margin: 0;
  list-style: none;
  position: relative;
}

nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
  background-color: #F0F8FF;/* Hintergrundfarbe bei den Menupunkte */
}

nav a {
  display: block;
  padding: 0 20px;
  color: #023020;/* Fontfarbe der Menueinträge */
  /*font-size: 18px; /* original */
  font-size: 1rem; /* 0.9rem entspricht die Originalgröße */
  line-height: 60px;
  text-decoration: none;
}

nav ul li ul li:hover { background: LightBlue; }
/*Hintergrundfarbe des Untermenupunkte wenn er weitere Unterpunkte hat und beim hover auf diese untermenupunkte */

nav a:hover { background-color: LightBlue;}/*Hintergrundfarbe derMenupunkte beim hover */

nav ul ul {
  display: none;
  position: absolute;
  top: 60px;
}

nav ul li:hover > ul { display: inherit; }

nav ul ul li {
  width: 240px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 240px;
}

li > a:after { content: ' +'; }

li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

#logo {
  display: block;
  padding: 7px;
  width: 100%;
  text-align: center;
  float: none;
}

nav { margin: 0; }

.toggle + a,
 .menu { display: none; }

.toggle {
  display: block;
  background-color: #AliceBlue;/* Hintergrundfarbe des Togglehauptmenueintrag + Dropdowns Haupteinträge - OK */
  padding: 0 20px;
  color: #023020;/*ein sehr dunkles grün - Farbe der alternativ-Menu Einträge */
  /* font-size: 20px; *//*original */
  font-size: 1rem;
  line-height: 60px;
  text-decoration: none;
  border: none;
}

.toggle:hover {
background-color: LightBlue;
}
/* Hintergrundfarbe beim Hover des Togglehauptmenueintrag + Dropdowns Haupteinträge: menu, musicals und mehr, selbe Farbe wie im normalen Menu*/

[id^=drop]:checked + ul { display: block; }

nav ul li {
  display: block;
  width: 100%;
}

nav ul ul .toggle,
 nav ul ul a { padding: 0 40px; }

nav ul ul ul a { padding: 0 60px; }

nav a:hover,
 nav ul ul ul a { background-color: AliceBlue;} /*Hintergrundfarbe beim Hover der Toggle andere Einträge + der Dropdowns Untereinträge*/

nav ul li ul li .toggle,
 nav ul ul a {
	background-color: #AliceBlue;
}

/*tq-add*/
 nav a:hover,
 nav ul ul ul li { background-color: LightBlue; }
 
nav ul ul {
  float: none;
  position: static;
  color: #ffffff;
}

nav ul ul li:hover > ul,
nav ul li:hover > ul { display: none; }

nav ul ul li {
  display: block;
  width: 100%;
}

nav ul ul ul li { position: static;
}

@media all and (max-width : 330px) {

nav ul li {
  display: block;
  width: 94%;
}

/* Menu Typography - Ende */