/*
Zu Erledigen
Links entfernen bei Öffnungszeiten.
Nav Bar Bottom siehe Text.
*/


/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

/*==========Root==========*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    color:#fff;
}

body{
    background-color: #24262b;
    font-family: 'Poppins', sans-serif;
}

/*==========NavBarTop==========*/
.nav1 {
  z-index: 10;
    padding: 0;
    padding-right: 20%;
    padding-left: 20%;
    overflow: hidden;
    background-color: #24262b;
    position: -webkit-sticky; /* Safari */
    position: fixed;
    top:0;
    width: 100%;
    height: 100px;
    transition: 0.2s;
}
.nav1 .li1 {
    margin-right: 15px;
}
      
.nav1 .li_a1 {
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding: 42px 44px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 18px;
}

.nav1	img {
  z-index: 11;
  margin-top: 10px;
  width: 400px;
  height: 75px;
}

@media screen and (min-width: 1150px){
  .nav1{
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 1150px){
  .nav1{
    padding-left: 5%;
    padding-right: 0%;
  }
}

@media screen and (max-width: 950px) {
    .nav1 .hideNav{
      display: none;
    }
}
@media screen and (max-width: 500px) {
  .nav1 .hideNav2{
    display: none;
  }
}

.bg_org{
    background-color: #ffcf00;
}

/*==========NavBarBottom==========*/
/*IN alle HTMl seiten einfügen und navtoggle mit MYFunction ersetzen

		 <script>
			function myFunction() {
			  var x = document.getElementById("myTopnav");
			  if (x.className === "topnav") {
				x.className += " responsive";
			  } else {
				x.className = "topnav";
			  }
			}
			</script>
*/
.topnav {
	overflow: hidden;
	background-color: #24262b;
  }

.topnav .hideNav3{
  display: none;
}
  
  .topnav a {
	float: left;
	display: block;
	color: #fff;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
  }
  
  .topnav a:hover {
	background-color: #fff;
	color: #24262b;
  }
  
  .topnav a.active {
	background-color: #ffcf00;
	color: #fff;
  }
  
  .topnav .icon {
	display: none;
  }
  
  @media screen and (max-width: 650px) {
	.topnav a:not(:first-child) {display: none;}
	.topnav a.icon {
	  float: right;
	  display: block;
	}
  }
  
  @media screen and (max-width: 650px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive .icon {
	  position: absolute;
	  right: 0;
	  top: 0;
	}
	.topnav.responsive a {
	  float: none;
	  display: block;
	  text-align: left;
	}
  }

  @media screen and (max-width: 500px) {
    .topnav.responsive .hideNav3{
      display: block;
    }
  }

/*==========Body==========*/
/*===Start===*/

.left{

	display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  	text-align: left;
}

.left img{
	width: 5%;
  height: 5%;
}

.spruch{
  background-color: #24262b;
  text-align: right;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 3vw;
}

.spruch a{
  color: #ffcf00;
}



/*===PictureWall===*/
.Imagebig{
  opacity: 0.3;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 820px) {
  .image-grid {
    margin-top: 20px;
    flex-direction: column;
    flex-wrap: no-wrap;
  }
  .hide{
    display: none;
   }
  .image-grid div { width: 100%; }
}

@media screen and (max-width: 420px) {
  .image-grid {
    margin-top: 20px;
    flex-direction: column;
    flex-wrap: no-wrap;
  }
  .hide{
    display: none;
   }
  .hide2{
    display: none;
   }
  .image-grid div { width: 100%; }
}

/*===Contact===*/

.Contact  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.Contact h1 {
  text-align: center;
    font-family: 'Playfair Display',
        serif;
    font-size: 4vw;
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

.Contact p {
    color: #d2d2d2;
}

.Contact p,
.Contact input,
.Contact textarea,
.Contact label {
    font-family: 'Poppins',
        sans-serif;
}

.Contact {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5%;
}

.Contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
}

.Contact input,
.Contact textarea,
.Contact label {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: #828282;
}

.Contact input,
.Contact textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #828282;
}

.Contact input[type=submit] {
    background-color: #ffcf00;
    padding: 15px 0;
    color: #24262b;
    font-size: 18px;
    border-bottom: none;
    margin-top: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

.Contact input[type=submit]:hover {
    background: #ffcf00;
    color: #FFF;
}

.Contact input,
.Contact textarea {
    color: white;
    font-size: 18px;
    padding: 10px;
}

.Contact input:focus,
.Contact textarea:focus {
    outline: 1px solid #828282;
}

.Contact a {
    color: #828282;
    font-style: italic;
}

.Contact a:hover {
    color: #fff;
}

/*==========Footer==========*/

body {
  font-family: 'Alegreya Sans', sans-serif;
}

/* Sticky footer position and size
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body { /* Margin bottom by footer height */ margin-bottom: 0px; margin-top: 100px;
}

.footer {

  position:relative;
  bottom: -40;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 100px;
}

/* Taller footer on small screens */
@media (max-width: 567em) {
    /*body {
      margin-bottom: 0px;
    }*/
    .footer {
      height: 70px;
    }
}

/* Sticky footer style and color
-------------------------------------------------- */
.container{
  max-width: 1170px;
  margin:auto;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
ul{
  list-style: none;
}

.footer{
  background-color: #ffcf00;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
  font-size: 18px;
  color: #24262b;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #ffcf00;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
  color: #24262b;
}
.footer-col ul li{
  color: #24262b;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #24262b;
  text-decoration: none;
  font-weight: 300;
  color: #24262b;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #24262b;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: /*rgba(255,255,255,0.2)*/#24262b;
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #24262b;
  transition: all 0.5s ease;
}
.footer-col .social-links a i{
  margin-top: 10px;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #24262b;
}
.copr {
  margin-bottom: 20px;
  margin-right: 10px;
  text-align: right;
  color:#24262b;
}
.copr a{
  color:#24262b;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 0px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}

@media (max-width: 567em) {
  .footer {
    height: auto; /* Automatische Anpassung an den Inhalt */
  }
}


/*===MediaScreens===*/

@media screen and (max-width: 650px) {
  .left img{
    width: 100%;
    height: 100%;
  }
  .spruch{
    font-size: 5vw;
    margin-bottom: 20px;
  }
  .Contact h1 {
    font-size: 5vw;
  }
  }
  @media screen and (max-width: 500px) {
    .spruch{
      font-size: 6vw;
      margin-bottom: 20px;
    }
    .Contact h1 {
      font-size: 6vw;
    }
  }
  @media screen and (max-width: 360px) {
    .spruch{
      font-size: 7vw;
      margin-bottom: 20px;
    }
    .Contact h1 {
      font-size: 7vw;
    }
  }


