/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  padding-left: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}
body {
  background-color: #ffffff;
}
.indexbg {
  background-image: url("../bgwide.jpg");
  background-size: 100vw auto;
  resize: both;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

p {
  max-width: 98%;
}
/* die Flexbox "Magic" */
.fixedleft {
  position: fixed;
  left: 10px;
  top: 80px;
  max-width: 300px;
  z-index: -10;
}
.fixedleft img {
  max-width: 100%;
  height: auto;
}
.fixedright {
  position: fixed;
  right: 20px;
  top: 80px;
  max-width: 250px;
  z-index: -10;
  background-color: white;
  z-index: 10;
}
.fixedright a {
  color: purple;
}
.fixedright img {
  max-width: 100%;
  height: auto;
}
.fixedrightbottom {
  position: fixed;
  right: 20px;
  bottom: 25px;
  background-color: rgb(0, 145, 95);
  text-align: center;
}

.fixedrightbottom a {
  text-decoration: none;
  background-color: #555;
  color: black;
  background-color: transparent;
}
.fixedrightbottom a:visited {
  color: black;
  background-color: #555;
}
.fixedrightbottom a:hover {
  color: darkblue;
  background-color: rgba(0, 0, 0, 0.3);
}
.fixedrightbottom a:active {
  color: black;
  background-color: #555;
}
.flex {
  display: flex;
}
.container-100 {
  width: 100%;
  z-index: 11;
}
.container-50 {
  width: 50%;
  z-index: 11;
}
.container-33 {
  width: 33.3333%;
  z-index: 11;
}
.container-25 {
  width: 25%;
  z-index: 11;
}
.container-60 {
  width: 60%;
  z-index: 11;
}
.container-40 {
  width: 40%;
  z-index: 11;
}
.container-66 {
  width: 66.6666%;
  z-index: 11;
}
.container-75 {
  width: 75%;
  z-index: 11;
}
.container-fixed-150 {
  min-width: 150px;
  z-index: 11;
}

/* Support Klassen */
.card {
  background: #fff;
  border-radius: 2px;
  margin: 8px;
  padding: 16px;
  height: auto;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.card-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.flex-link a {
  color: #000;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.flex-link h1 {
  align-content: center;
  height: 100%;
  width: 100%;
  font-size: calc(16px + (28 - 16) * ((100vw - 320px) / (1600 - 320)));
}
.flex-link a:active {
  color: #000;
}
.flex-link a:visited {
  color: #000;
}
.flex-link a:hover {
  text-align: center;
  text-decoration: none;
  box-shadow: none;
}
.dark .card {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(39, 132, 191, 1) 25%,
    rgba(39, 132, 191, 1) 50%,
    rgba(39, 132, 191, 1) 75%,
    rgba(255, 255, 255, 1) 100%
  );
  color: black;
  border-radius: 2px;
  margin: 8px;

  height: auto;
}

/* Navigation */
li a {
  align-items: center;
  display: block;
  text-decoration: none;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: medium;
  font-weight: bold;
}
.navi li {
  margin: auto;
  list-style-type: none;
}
.dropdown li {
  margin: auto;
  list-style-type: none;
}
.dropdown li a {
  align-items: center;
  display: block;
  text-decoration: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0px;
  padding-right: 10px;
  font-size: medium;
  font-weight: bold;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
}
.relative {
  position: relative;
}
.navi {
  display: flex;
  justify-content: start;
  background-color: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(39, 132, 191, 1) 25%,
    rgba(39, 132, 191, 1) 50%,
    rgba(39, 132, 191, 1) 75%,
    rgba(255, 255, 255, 1) 100%
  );
}

main ul {
  line-height: 140%;
  padding: 2px;
}

main li {
  position: relative;
  left: 30px;
  max-width: 95%;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.8rem;
}
.navi a:link {
  color: black;
  background-color: transparent;
}
.navi a:visited {
  color: Black;
}
.navi a:hover {
  color: darkblue;
  background-color: rgba(0, 0, 0, 0.3);
}
.navi a:active {
  color: black;
}

/* Aside Subnavigation */
.subnavi {
  list-style: none;
}
.subnavi a {
  padding: 0;
}

.header-card {
  padding: 0;

  color: white;
  border-radius: 2px;
  margin: 8px;
  opacity: 95%;
  height: auto;
}

.img-float-left {
  float: left;
  margin: 0 16px 16px 0;
}
.img-auto-scale {
  width: 100%;
  height: auto;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  background: rgba(255, 255, 255, 0.5);
}

.footer {
  text-align: center;
  padding: 64px;
}

@media screen and (max-width: 1530px) {
  .fixedleft .container-100 {
    width: 50%;
    height: auto;
    overflow: hidden;
  }
  .fixedleft .container-100 img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1250px) {
  .fixedleft .container-100 {
    display: none;
  }
  .fixedrightbottom {
    position: relative;
    min-width: 90%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  .indexbg {
    background-image: url("../logo.jpg");
    background-size: 100vw 100vh;
    resize: both;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .topnav a:not(:first-child),
  .dropdown .dropbtn ul {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {
    position: fixed;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {
    float: none;
  }
  .topnav.responsive .dropdown-content {
    width: 100%;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  .fixedleft {
    display: none;
  }
  .fixedright {
    position: relative;
    min-width: 90%;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 20px;
  }
  .fixedrightbottom {
    position: relative;
    min-width: 90%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .fixedrightbottom a {
    position: relative;
    min-width: 90%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .fixedleft img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .fixedright img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .fixedrightbottom img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

.dropdown {
  float: left;
  z-index: 2;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  background-color: inherit;
  font-family: Arial;
  font-weight: bold;
  margin: 0;
  z-index: 2;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(0, 245, 95);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.dropdown-content a {
  float: none;
  color: black;
  text-decoration: none;
  display: block;
  text-align: left;
  z-index: 2;
}

.dropdown:hover .dropbtn {
  background-color: rgba(0, 0, 0, 0.3);
  color: darkblue;
  z-index: 2;
}

.dropdown-content a:hover {
  z-index: 2;
  color: darkblue;
  background-color: rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 2;
}

.topnav .icon {
  display: none;
}
.topnav a {
  text-align: center;
}

#cookie-popup {
  text-align: center;
  background: rgb(148, 148, 148);
  position: fixed;
  align-content: center;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  font-size: 20px;
  line-height: 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  max-height: 75px;
  width: 100%;
}

#cookie-popup.hidden {
  display: none;
}
/* burgermenu insert */
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* ///////////..utility classes../////////// */

.btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
}

.btn-primary {
  color: #fff;
  background: #16a083;
}

.btn-primary:hover {
  background: #117964;
  transition: background 0.3s ease-in-out;
}

/* ............/navbar/............ *

/* desktop mode............/// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  height: 100%;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: center;
  height: 68px;
  align-items: center;
  max-width: 100%;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  font-size: 1.2rem;
}

.menu-items a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.menu-items a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

/* ......../ media query /.......... */

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    max-width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 20px;
    padding-bottom: 50px;
    background: rgb(79, 255, 194);
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }

  /* ......./ food /......... */

  .food-container {
    flex-direction: column;
    align-items: stretch;
  }

  .food-type:not(:last-child) {
    margin-bottom: 3rem;
  }

  .food-type {
    box-shadow: 5px 5px 10px 0 #aaa;
  }

  .img-container {
    margin: 0;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 65%;
  }

  .navbar .menu-items li {
    font-size: 1.6rem;
  }

  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .food-menu-container img {
    margin: auto;
  }

  .food-menu-item {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    width: 90%;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-img {
    width: 90%;
    margin: 3rem auto;
  }

  .logo {
    position: absolute;
    top: 06px;
    right: 15px;
    font-size: 3rem;
  }

  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 500;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .img-container h3 {
    font-size: 1.5rem;
  }

  .img-container .btn {
    font-size: 0.7rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .showcase-area {
    height: 50vmax;
  }
}
