/* font-family: 'Poppins', sans-serif; */

@font-face {
  font-family: 'tomatoesregular';
  src: url('Font/tomatoes-webfont.woff2') format('woff2'),
  url('Font/tomatoes-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'Jaceline';
  src: url('Font/Jaceline.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 200;

}


body {
  background-color: rgb(30, 30, 30);
  margin: 0;
  padding: 0;
}

#head {
  background-color: rgb(0, 0, 0);

}

/* #header{                                                       
    background-color: rgb(0, 0, 0); */
/*  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
     rgba(24, 20, 7, 0.7)),url(Bilder/Banner_Landschaft_01.jpg);    */ /*Hintergrund Bild Header mit verlauf*/
/* background-position: center;
background-size: cover;
position: relative; */

/* } */

/*-----------------------------Navigation-----------------------*/
#header {

  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: 80%;

  padding: 2% 0;
  justify-content: space-between;
  align-items: center;
}

#logo {
  flex: 25%;


}

#logo a img {
  width: 190px; /* Größe Logo ändern */
  margin-right: 20px;
  padding: 10px;
}


#menu {
  z-index: 200;
  display: flex;
  flex: 70%;
}


#nav-links {
  /* background-color: aqua; */
  flex: 50%;
  text-align: center; /* Ausrichtung Navigation */
}

.menupoint {
  list-style: none; /* Punkte von Liste entfernen */
  display: inline-block;
  padding: 5px 20px;

}

#nav-links ul li a {
  text-decoration: none; /* Unterstreichung entfernen */
  font-size: 1.3em;
}

.menupoint a {
  color: white;
}


#fbinsta {
  background-color: transparent;
  margin: auto;
  flex: 20px;
  text-align: right;
  margin-left: 10px;
  padding: 10px;

}

#fbinsta ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}

#fbinsta ul li a {
  color: white;
  text-decoration: none;
  padding: 15px;
}


#fbinsta ul li a:hover {
  color: hsl(51, 100%, 70%)
}


.menupoint::after { /* Gelbe Linie wird gezeichnet */
  content: ''; /* Kein Inhalt weil eine Linie */
  width: 0; /* Linie virtuell verschwinden lassen */
  height: 2px;
  background: hsl(51, 100%, 70%);
  display: block; /*Damit der Strich im Block auftaucht*/
  margin: auto;
  transition: 0.5s; /* Langsames Unterstreichen und aufkommen */
}

.menupoint:hover::after {
  width: 100%;
}

#header .fa.fa-bars, #header .fa.fa-times { /*Icons für Responsives Design normal verbergen*/
  display: none;

}


/*---------------Untermenue------------*/

nav ul ul {
  background-color: rgb(0, 0, 0);
  z-index: 20;
  position: absolute;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
}


#menulinks li:hover ul {
  display: flex;
  flex-direction: column;
  text-align: center;

  opacity: 1;
  visibility: visible;
}

#submenu li {
  list-style: none;
}

#submenu li a {
  display: block;
  font-weight: 300;
  padding: 12px;
}

#submenu li a:hover {
  background-color: hsl(51, 100%, 70%);
  color: black;
  transition: ease-in-out .6s;
}


/* ----------Responsives Design Menü----------- */

@media (max-width: 650px) {
  /*ab dieser pixelzahl wird das Menü aktiv*/
  #logo a img {
    width: 160px; /* Größe Logo ändern */
    margin-right: 10px;
    padding: 10px;
  }

  #header .fa.fa-bars { /*für das Menü zum aufrufen*/
    display: block;
    padding: 20px;
    color: white;
    cursor: pointer;
  }

  #header .fa.fa-bars:hover {
    color: hsl(51, 100%, 70%);
  }


  #menu { /*Das neue Menü*/
    position: absolute;
    background-color: hsl(51, 100%, 70%);
    height: 400px;
    width: 180px;
    top: -400px;
    right: 0; /*Menü vorerst verschwinden lassen*/

    z-index: 200;
    transition: 0.8s; /*Menü langsam reinscrollen*/
  }

  #menu ul li { /*Responsives NaviMenü*/
    display: block;
  }

  #menu ul li a {
    color: black;
  }


  #header .fa.fa-times {
    display: block;
    color: black;
    margin: 10px;
    margin-top: 20px;
    padding-left: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  #header .fa.fa-times:hover {
    color: hsl(230, 100%, 70%);
  }


  #nav-links {
    background-color: transparent;
    text-align: left;
  }

  #nav-links ul li a {
    font-weight: 300;
  }

  #nav-links ul li a:hover {
    color: hsl(230, 100%, 70%)
  }


  #fbinsta {
    position: absolute;
    background-color: transparent;
    top: 270px;
    left: -15px;
  }

  #fbinsta ul li {
    padding: 10px 0;
  }

  #fbinsta ul li a:hover {
    color: hsl(230, 100%, 70%);
  }


  nav ul ul {
    position: absolute;
    top: -400px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }

  #submenu li a {
    padding: 6px 15px;
  }

  #menusubmenuport:hover .submenu {
    background-color: hsl(51, 100%, 70%);
    display: flex;
    flex-direction: column;
    text-align: right;
    position: absolute;
    right: 180px;
    top: 134px;
  }


}


/*----------------------Seite------------------------------------------------*/

.contact {

  display: flex;
  flex-direction: column;
}

.seite {
  align-items: center;
  text-align: center;
  margin: 3% 0;
}

.seite img {
  width: 500px;
}

.Karte iframe {
  width: 600px;
  height: 450px;
  display: flex;
  margin: auto;
}

.Adresse {
  margin: 20px;
  margin-bottom: 40px;
}

.Adresse h2 {
  color: white;
}

.Adresse p {
  color: white;
  padding: 0;
}

.Adresse a {
  color: white;
  font-size: 1.5rem;
}

@media (max-width: 650px) {
  .seite img {
    width: 350px;
  }

  .Karte iframe {
    width: 350px;
    height: 231px;
  }
}


p {
  color: #777;
  font-weight: 300;
  padding: 10px;
}

#Pfeilnachoben {
  text-align: center;
  margin-top: 4%;
  margin-bottom: 10px;
}

/*---------------Fusszeile---------------*/

.footer {
  background-color: rgb(20, 20, 20);
  width: 100%;
  text-align: center;
  padding: 15px 0;

}


.icon .fa {
  color: white;
  margin: 0 10px;
  cursor: pointer;
  padding: 5px 0;
}

.icon a {
  text-decoration: none;
}


#Infos {
  margin: 10px;

}

#Infos a {
  color: rgb(255, 255, 255);
  font-size: 1.3em;
  text-align: center;
  padding: 5px;
}


#RechtlicheListe li {
  list-style: none;
  display: inline;
  margin: 20px;

}

#RechtlicheLinks ul li a {
  text-decoration: none;
  color: #777;
  list-style: none;
}

#RechtlicheLinks ul li a:hover {
  font-style: italic;
}
