/*Farbpalette Variablen anlegen*/
:root{
  --background-color: #f19e21;
   --darker-background-color: #73541c;
  --accent-color:#b9792b;
  --text-color:#ffffff;
  --navbar-height: 80px;
}
/*Grundlegende Einstellungen-- *gilt für jedes HTML Element*/
*{
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;

}
html{
  height: 100%;
  scroll-behavior:smooth !important;

}

body{
  height: 100%;
  background: var(--accent-color);
  margin-top: 80px;
}
.seiten-anzeiger{
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--navbar-height);
  background: var(--background-color);
  display:flex;
  justify-content: space-between;
  align-items: center;
 
}
nav .logo{
  margin-left: 30px;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 35px;
  font-variant: small-caps;
  text-decoration: none;

}
 nav .logo img{
  width: 160px;
 }

/*NAVIGATION*/
nav ul{
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  list-style: none; /*entfernt alle Stichpunkte*/
 
}
nav li{
  height: 100%;
  width: 150px;
  text-align: center;
  position: relative;/*damit wird das dropdown relativ zu seinem li positioniert*/
 
}
nav li a{
  color: rgb(0, 0, 0); /* Farbe li a*/
}
nav li label{ /*Farbe labels*/
  color: rgb(0, 0, 0);
}
nav li:hover{
  background: var(--accent-color);
}
nav ul a{ /*damit wird der Link schon an der Kante anklickbar*/
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /*entfernt Unterstreichung*/
}
.dropdown{
  height: min-content;/* richtet sich daran wieviele links das dropdown menue hat*/
  width: 200px;
  background: var(--background-color);
  display:  none; /* entscheidet auch über das ein und ausschalten none oder flex  (beim hover)*/
  flex-direction: column;
  position: absolute;
  left: 0;
  top: var(--navbar-height);/*ist die Höhe der nav*/
}
.dropdown li{
  height: 70px;
  width: 100%;
}
.dropdown li a{
  justify-content: flex-start;
  padding-left: 30px;
  width: calc(100% - 30px); /* damit der link nicht ausserhalb des li schon erscheint*/
}
nav li:hover .dropdown{
  display: flex;
}
nav input[type="checkbox"]/* spricht alle checkboxes in der nav an*/{
  display: none; /* checkboxkästchen wird verborgen*/
}
.expandable_li{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/*Hamburger Menue*/
.toggle_button{
width: 30px;
height: 23px;
position: absolute;
top: 25px;
right: 25px;
display: none; /*wird beim togglen auf flex geschaltet*/
flex-direction: column;
justify-content: space-between;
}
.bar{
  height: 4px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 100px;
}
@media(max-width: 850px){
  .toggle_button{
    display: flex;
  }
  nav ul{
    height: min-content;
    width: 100%;
    background: var(--background-color);
    display: none;
    position: absolute;
    top: var(--navbar-height);
  }
  nav li{
    height: min-content;
    width: 100%;
  }
  nav ul a{
    padding: 30px 0;
  }
  .expandable_li{
    display: block;
  }
  .expandable_li label{
    padding: 30px 0;
    cursor: pointer;
    display: block;
  }
  /*handyvariante  Ansicht vo dropdown menue*/
  .expandable_li:hover .dropdown{
    display: none;
  }
  .expandable_li input[type="checkbox"]:checked ~ .dropdown{
    display: block;
  }



  .dropdown{
    position: static;
    width: 100%;
  }
  .dropdown li{
    padding: 0;
    display: block;
    position: static;
    background-color: var(--darker-background-color);
  }
  .dropdown li a{
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  #toggle_button:checked ~ ul{
    display: block;
  }
}



/*FOOTER*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

 

.footer{
  position: relative;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 100%;
  width: 100%;
  background-color: #d68c1c;
  border-radius: 0px;
  margin-top: 0px;
}
.footer .footer-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
  align-items: center;
}
.footer .footer-col#adresse{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.6em;
}
.footer-row .footer-col h4{
color: #fff;
font-size: 1.2rem;
font-weight: 400;
}
.footer-col .links{
 
  margin-bottom: 20px
}
.footer-col .links li{
  list-style: none;
  margin-bottom: 10px;
}
.footer-col .links li a{
  text-decoration: none;
  color: #161616;
}

.footer-col .links li a:hover{
  color: #fff;
}
.footer-col p{
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer-col#adresse p{
  margin: 20px 0;
  color: #000000;
  max-width: 300px;
  text-align: right;
}
@media (max-width:879px){
  .footer-col#adresse p{
    text-align: left;
  }
}
.footer-col .links#social a img{
  width: 40px;
}



@media(max-width: 100vw){
  .footer{
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    }
    .footer .footer-row{
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form{
      display: block;
    }
    .footer-col form :where(input, button){
      width: 100%;
    }
    .footer-col form button{
      margin: 10px 0px 0px 0px;
    }
    
}
.img-div{
  display: flex;

}
.img-div img{
  width: 200px;
}
.social{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 60px;
  gap: 10px;
}
.social img{
  width: 50px;
}
@media(max-width: 880px){
  .social{
    left: 20px;
  }
}

@media(max-width: 880px){
.footer-col#adresse{
 margin-bottom: 100px;
}
}