/*** Mixins & Default Styles ***/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-ExtraBold.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-Regular.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-SemiBoldItalic.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-Medium.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-BoldItalic.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-Bold.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-ExtraBoldItalic.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-ExtraBoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./ressources/fonts/OpenSans-SemiBold.woff2') format('woff2'),
      url('./ressources/fonts/OpenSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amatic SC';
  src: url('./ressources/fonts/AmaticSC-Bold.woff2') format('woff2'),
      url('./ressources/fonts/AmaticSC-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}



body {
  overflow-x: hidden;
  overflow-y: scroll;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*** Color Variables ***/
/*** Fonts ***/
a,
p {
  font-family: "Open Sans";
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans";
  font-weight: 600;
  color: #d93131;
}

.button {
  border: none;
  color: white;
  background-color: #ddac51;
  padding: 15px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  font: "Open Sans";
  font-weight: bold;
}

.body-imp {
  margin: auto;
  max-width: 1000px;
  font-family: "Open Sans";
}

.body-imp h1,
.body-imp h2,
.body-imp h3,
.body-imp h4 {
  color: black;
  padding-bottom: 20px;
}

.body-imp p {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*** Centering Hack ***/
/*** Header Styles ***/
header {
  width: 100vw;
  height: 100vh;
  background: #24221eb2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*** Navigation Styles ***/
nav {
  width: 100vw;
  height: 160px;
  background: #ddac51;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  position: fixed;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

nav.navShadow {
  -webkit-box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  height: 100px;
}

nav.navShadow #word-mark {
  opacity: 1;
}

#brand,
#menu,
ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#logo {
  max-width: auto;
  height: 400px;
}

#word-mark {
  cursor: pointer;
  padding-left: 40px;
  margin-left: 20px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: white;
  font-size: 4rem;
  font-family: "Amatic SC";
}

/*** Menu Styles ***/
#menu {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 40px;
}

li {
  margin-left: 20px;
  display: block;
}

li a {
  text-decoration: none;
  color: white;
  font-size: 1.8rem;
  font-family: "Amatic SC";
}

#menu-toggle {
  width: 55px;
  height: 55px;
  background: #d9a23c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

#menu-toggle:hover .bar {
  width: 25px;
}

#menu-toggle.closeMenu .bar {
  width: 25px;
}

#menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

#menu-toggle.closeMenu .bar:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}

#menu-toggle.closeMenu .bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}

.bar:last-child {
  width: 15px;
}

/*** Hero Section Styles ***/
#hero-section {
  width: 100vw;
  height: calc(100vh - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 160px;
}

#videoBG {
  position: absolute;
  top: 20px;
  z-index: -1;
  overflow: hidden;
}

@media (max-aspect-ratio: 16 / 9) {
  #videoBG {
    width: auto;
    height: 100%;
  }
}

@media (min-aspect-ratio: 16 / 9) {
  #videoBG {
    width: 100%;
    height: auto;
  }
}

#head-line {
  color: white;
  font-size: 3rem;
  font-family: "Amatic SC";
  text-align: center;
  position: relative;
}

/*** Section Styles ***/
section:nth-child(even) {
  background: #24221e;
  color: #e9dec9;
}

section:nth-child(odd) {
  background: #e9dec9;
  color: #24221e;
}

.heading {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 3rem;
  font-family: "Amatic SC";
}

#textblock {
  max-width: 600px;
  margin: auto;
}

.menu-manual {
  padding-bottom: 100px;
}

.menu-manual table {
  width: 50%;
  margin: 100px auto;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: "Open Sans";
}

.menu-manual td {
  padding: 0.6em 0 0 0;
  vertical-align: bottom;
  background-image: radial-gradient(#e9dec9 1px, #24221e 0px);
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-weight: bolder;
  font-size: 1.1em;
}

.menu-manual td span {
  background-color: #24221e;
}

.menu-manual td:first-child {
  text-align: left;
}

.menu-manual td:first-child span {
  padding-right: 0.25em;
}

.menu-manual td:last-child {
  text-align: right;
  width: 3em;
}

.menu-manual td:last-child span {
  padding-left: 0.25em;
}

.menu-manual .description {
  padding-top: 0.2em;
  background-image: none;
  text-align: left;
  padding-left: 20px;
  font-size: 0.8rem;
  font-weight: lighter;
}

.btn {
  font-size: 1em;
  margin-bottom: 20px;
}

.speisekarte-desktop {
  padding-top: 30px;
}

.speisekarte-desktop img {
  max-width: 80vw;
  height: auto;
}

.speisekarte-mobile img {
  display: none;
}

.container {
  max-width: 80%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(100px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 0.5em;
}

#speisekarte {
  width: 100%;
  height: 100%;
}

.item-1 {
  -ms-grid-row: 2;
  grid-row: 2;
}

.item-2 {
  -ms-grid-row: 2;
  grid-row: 2;
}

.item-3 {
  -ms-grid-row: 3;
  grid-row: 3;
}

.item-4 {
  -ms-grid-row: 3;
  grid-row: 3;
}

.item-A {
  -ms-grid-row: 1;
  grid-row: 1;
}

.item-B {
  -ms-grid-row: 1;
  grid-row: 1;
}

.images {
  -o-object-fit: contain;
     object-fit: contain;
}

.slide {
  -o-object-fit: fill;
     object-fit: fill;
}

.open table {
  width: 300px;
  margin: auto;
  table-layout: auto;
  border-collapse: collapse;
  font-family: "Open Sans";
}

.day {
  font-weight: bolder;
  text-align: left;
}

.time {
  text-align: right;
}

.time-closed {
  text-align: right;
  color: red;
}

.liefer table {
  max-width: 900px;
  margin: auto;
  table-layout: fixed;
  border-collapse: seperate;
  font-family: "Open Sans";
  border-spacing: 15px;
}

.liefer td {
  text-align: left;
}

.liefer tr {
  margin-bottom: 5px;
}

.liefer .euro {
  width: 10%;
}

.call-desktop {
  display: inherit;
}

.call-desktop h1 {
  color: #ddac51;
}

.call-mobile {
  display: none;
}

.lieferservice {
  color: #d93131;
}

.social-button {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.568);
  width: 150px;
  height: 52px;
  line-height: 52px;
  margin: 0 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0.99;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  margin-bottom: 16px;
}

.social-button i {
  margin-bottom: 6px;
}

.social-button:before {
  content: "";
  background-color: #000;
  width: 120%;
  height: 120%;
  position: absolute;
  top: 90%;
  left: -110%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.social-button .fa {
  font-size: 38px;
  vertical-align: middle;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.social-button.facebook:before {
  background-color: #3b5998;
}

.social-button.facebook .fa {
  color: #3b5998;
}

.social-button.instagram:before {
  background-color: #e95950;
}

.social-button.instagram .fa {
  color: #e95950;
}

.footer-link i {
  margin-bottom: 8px;
}

.social-button.footer-link:before {
  background-color: darkgrey;
}

.social-button.footer-link .fa {
  color: darkgrey;
}

.social-button.footer-link i {
  font-size: 0.6em;
  font-family: "Open Sans";
  font-weight: lighter;
}

.social-button.footer-link:hover .fa {
  color: grey;
}

.social-button.footer-link:before {
  content: "";
  background-color: #000;
  width: 0;
  height: 0;
}

.social-button:focus:before,
.social-button:hover:before {
  top: -10%;
  left: -10%;
}

.social-button:focus .fa,
.social-button:hover .fa {
  color: #fff;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.button-wrapper {
  display: inline-block;
}

#imageBG {
  display: none;
}

.btn:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

/* scroll to top button*/
#toTopButton {
  /* Hidden by default */
  /* display: none;   */
  display: none;
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: var(--primary-color);
  /* Set a background color */
  color: #ddac51;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  /*padding: 15px; /* Some padding */
  border-radius: 100%;
  /* Rounded corners */
  font-size: 35px;
  /* Increase font size */
  width: 75px;
  height: 75px;
}

.arrow-up {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
}

#toTopButton:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/*** Responsive Menu For Smaller Device ***/
@media screen and (max-width: 1070px) {
  #word-mark {
    font-size: 2.9rem;
    margin-left: 0px;
    padding-left: 10px;
  }
  li a {
    font-size: 1.6rem;
  }
  #toTopButton {
    right: 10px;
    bottom: 10px;
  }
}

@media screen and (max-width: 890px) {
  .speisekarte-mobile img {
    display: inherit;
  }
  .speisekarte-desktop {
    display: none;
  }
  .liefer .euro {
    width: 20%;
  }
  #menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  ul {
    display: inline-block;
    width: 100%;
    height: 0;
    background: #24221e;
    position: absolute;
    top: 160px;
    right: 0;
    -webkit-transform: translate(, );
            transform: translate(, );
    -webkit-box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.showMenu {
    background-color: #24221e;
    height: 250px;
  }
  ul.showMenu li {
    height: 60px;
    opacity: 1;
    visibility: visible;
  }
  li {
    width: 50%;
    height: 80px;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    -webkit-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
  }
  li:first-child, li:nth-child(2) {
    margin-top: 50px;
  }
  li a {
    color: #e9dec9;
  }
  #head-line {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  #word-mark {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 690px) {
  #videoBG {
    display: none;
  }
  #textblock {
    margin: 0 50px 0 50px;
  }
  #hero-section {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("/ressources/bilder/min/image (9)_small.jpeg");
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/ressources/bilder/min/image (9)_small.jpeg");
    background-size: cover;
    background-position: center;
    width: 100vw;
    position: absolute;
    overflow: hidden;
  }
  .container {
    max-width: 70%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 0.2em;
    padding-bottom: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #speisekarte {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .item-1 {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .item-2 {
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .item-3 {
    -ms-grid-row: 4;
    grid-row: 4;
  }
  .item-4 {
    -ms-grid-row: 5;
    grid-row: 5;
  }
  .item-A {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .item-B {
    -ms-grid-row: 6;
    grid-row: 6;
  }
  .social-button {
    margin-bottom: 10px;
  }
  .call-mobile {
    display: inherit;
  }
  .call-desktop {
    display: none;
  }
  #toTopButton {
    right: 5px;
    bottom: 5px;
    font-size: 25px;
    width: 40px;
    height: 40px;
  }
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .ios {
    display: inherit;
  }
  .android {
    display: none;
  }
}

@supports not (-webkit-touch-callout: none) {
  /* CSS specific to all other devices */
  .ios {
    display: none;
  }
  .android {
    display: inherit;
  }
}
/*# sourceMappingURL=style.css.map */