@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);
@font-face {
  font-family: "avenirlight";
  src: url("../fonts/AvenirNext-UltraLight.ttf") format("truetype");
}
@font-face {
  font-family: "avenirregular";
  src: url("../fonts/AvenirNext-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "avenirmedium";
  src: url("../fonts/AvenirNext-Medium.ttf") format("truetype");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  --yellow: #ffd42d;
  --grey: #141414;
  --green: #515849;
  margin: 0;
  padding: 0;
  cursor: default;
}

html {
  height: 100vh;
  width: 100vw;
}

body {
  position: relative;
  font-family: "avenirregular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: white;
  width: 100%;
  background-color: var(--grey);
}

h3 {
  font-family: parkside, cursive;
  font-style: normal;
  font-weight: 100;
}

h5 {
  font-size: 14px;
  text-transform: uppercase;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 12px;
}

p.text {
  max-width: 400px;
  margin: 0 auto;
  text-align: justify;
}

a {
  text-decoration: none;
  color: var(--grey);
  cursor: pointer;
}

a.text {
  color: white;
}

header {
  position: relative;
  padding: 20px;
  height: 35vh;
  background-image: url("../img/ExportHappyBowl-006.jpg");
  background-size: cover;
  background-position: top;
}

.name {
  font-family: "avenirregular", sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: white;
  text-transform: uppercase;
  font-size: 18px;
}

.impressum {
  color: white;
  opacity: 0.5;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
}

.impressum i {
  cursor: pointer;
}

.header-text {
  position: absolute;
  bottom: 20px;
}

.header-text img {
  max-height: 20vh;
  max-width: 80vw;
}

.description {
  font-family: "avenirregular", sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 12px;
  text-transform: uppercase;
}

.main-content {
  height: 65vh;
  padding: 20px;
}

.impressions {
  display: inline-block;
  margin-top: 5px;
}

.speisekarte-button {
  display: inline-block;
  font-family: "avenirregular", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
  background-color: var(--yellow);
  padding: 5px 15px;
  border-radius: 10px;
  float: right;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 65vh;
  width: 100vw;
}

.contact-content {
  margin: 0 auto;
  position: relative;
  bottom: 25px;
  display: grid;
  padding: 20px;
  grid-gap: 20px;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  max-width: 480px;
}

.contact-content a {
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
}

.contact-content a i {
  font-size: 30px;
  color: var(--yellow);
  cursor: pointer;
}

.times {
  margin-bottom: 25px;
}

.times h5 {
  margin-bottom: 5px;
}

.times p strong {
  letter-spacing: -1px;
  font-weight: 900;
}

.information {
  font-size: 14px;
  max-width: 480px;
}

.location-content {
  margin-top: -50px;
}

.location {
  max-width: 90vw;
  max-height: 30vh;
  margin: 10px auto 0;
}

.adresse {
  margin: 10px auto;
}

.route {
  display: block;
  padding: 5px 15px;
  background-color: var(--yellow);
  color: var(--grey);
  width: min-content;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
  border-radius: 10px;
  margin: 0 auto 10px;
}

.order-content {
  margin: 50px auto;
  position: relative;
  width: 480px;
}

.order-content a {
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  cursor: pointer;
}

footer {
  position: fixed;
  bottom: 0;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
  width: 100%;
  background-color: var(--yellow);
  height: 50px;
  text-align: center;
}

footer a {
  display: inline-block;
  font-weight: 900;
  letter-spacing: -1px;
  padding: 5px;
  border-radius: 10px;
}

footer a i {
  cursor: pointer;
}

/* SLIDER */
.slider-ctr {
  width: 100%;
  max-width: 480px;
  height: calc((100vw - 40px) * (2/3));
  max-height: 320px;
  position: relative;
  margin: 25px auto 0;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  background: var(--grey);
  box-shadow: 0 10px 15px 3px rgba(0, 0, 0, 0.15), 0 5px 20px 3px rgba(0, 0, 0, 0.1);
}

.slider-ctr:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
  background: -webkit-linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 9;
}

.slider-control {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 80px;
  overflow: hidden;
  border-radius: 3px;
  /*box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.15);*/
  z-index: 99;
}

.slider-control .control {
  width: 38px;
  height: 40px;
  display: block;
  float: left;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  background: white;
  margin: 0 1px;
}

.slider-control .control .icon {
  pointer-events: none;
  transition: 0.3s all ease;
  color: var(--grey);
}

.slider-control .control.disabled {
  pointer-events: none;
  background: #ddd;
}

.slider-control .control.disabled .icon {
  opacity: 0.5;
  color: var(--grey);
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.45s all cubic-bezier(0.65, 0.05, 0.36, 1);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.125);
}

.slide.slide-on {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.slide.text-on .title {
  transition: 0.3s all cubic-bezier(0.65, 0.05, 0.36, 1) 0.45s;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.slide.text-on .author {
  transition: 0.3s all cubic-bezier(0.65, 0.05, 0.36, 1) 0.6s;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.slide img {
  display: block;
  max-width: 100%;
}

.slide figcaption {
  position: absolute;
  top: 20px;
  left: 20px;
}

.slide .title {
  font-size: 50px;
  margin-bottom: 2px;
  color: white;
  transition: 0.3s all cubic-bezier(0.65, 0.05, 0.36, 1) 0.45s;
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  font-weight: 400;
  letter-spacing: 10px;
  text-transform: uppercase;
  position: relative;
}

.slide .author {
  font-size: 16px;
  color: white;
  opacity: 0.8;
  transition: 0.3s all cubic-bezier(0.65, 0.05, 0.36, 1) 0.45s;
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  font-weight: 300;
  letter-spacing: 3px;
  position: relative;
  z-index: 9;
}

/*# sourceMappingURL=main.css.map */
