@import url('https://fonts.googleapis.com/css?family=Amiri');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script');

body {
  padding: 0;
  margin: 0;
  font-family: 'Amiri', serif;
  background-color: rgb(224, 224, 224);
  color: rgba(44, 44, 44, 1);
}

* {
  font-family: 'Amiri', serif;
}

.centered {
  width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 65px;
  text-align: center;
  font-weight: 100;
  color: rgba(121, 85, 72, 1);
  font-family: 'Dancing Script', cursive;
  margin: 0;
  padding: 40px 0px;
  display: inline-block;
  position: relative;
}

h1::after {
  right: -175px;
}

h1::after, h1::before {
  content: "";
  width: 150px;
  height: 1px;
  background: rgb(121, 85, 72);
  position: absolute;
  bottom: 75px;
}

h1::before {
  left: -175px;
}

.h1outer {
  text-align: center;
}

content:nth-child(odd) h1 {
  color: rgb(224, 224, 224);
}

content:nth-child(odd) h1::after, content:nth-child(odd) h1::before {
  background: rgb(224, 224, 224);
}

content:nth-child(odd) {
  display: block;
  background: rgba(121, 85, 72, 1);
}

content {
  padding-bottom: 50px;
  display: block;
}

.unselectable {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}

.header-image {
  background-image: url(/images/header/header.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-image-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.35);
  display: flex;
  z-index: 200;
  transition: all .3s ease-in-out;
}

.scrolled .menu {
  background: rgba(121, 85, 72, 1);
}

.menu-left, .menu-right {
  width: 25%;
  height: 100%;
}

.menu-middle a:hover::after {
  transform: scale(1);
}

.menu-middle a::after {
  content: "";
  bottom: 5px;
  left: 0;
  height: 1px;
  width: 100%;
  background: rgba(255, 197, 21, .75);
  position: absolute;
  transition: all .3s ease-in-out;
  transform: scale(0);
}

.menu-middle a:hover {
  color: rgba(255, 197, 21, .75);
}

.menu-middle a {
  color: rgba(224, 224, 224, 0.75);
  text-decoration: none;
  font-size: 17pt;
  margin: 0px 15px;
  transition: color .3s ease-in-out;
  position: relative;
}

.menu-middle {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(224, 224, 224, 0.35);
}

.menu-right {
  border-right: 1px solid rgba(224, 224, 224, 0.35);
}

.menu-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-left a.tel {
  color: rgba(224, 224, 224, 0.75);
  text-decoration: none;
  font-size: 17pt;
}

.logo {
  background-image: url(/images/logo-white.png);
  height: 100%;
  width: 50%;
  background-size: 75%;
  background-repeat: no-repeat;
  margin: 0 auto;
  opacity: 0.75;
  background-position: center;
}

.header-image-text {
  color: rgba(224, 224, 224, 0.75);
  z-index: 100;
  position: relative;
  max-width: 650px;
  padding: 50px;
}

.header-image-text .text-wrapper .icon {
  font-size: 45px;
  padding-bottom: 15px;
}

.header-image-text .text-wrapper .headline {
  font-size: 60px;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 10px;
}

.header-image-text .text-wrapper .text {
  font-size: 22px;
  line-height: 27px;
}

.border2::after, .border2::before, .border1::after, .border1::before {
  position: absolute;
  background: rgba(224, 224, 224, .35);
  content: "";
}

.border2::after {
  left: 2px;
  bottom: 0;
  height: 2px;
  width: 200px;
  transition: width .3s ease-in-out;
  transition-delay: 0.2s;
}

.border2::before {
  left: 0;
  bottom: 0;
  height: 200px;
  width: 2px;
  transition: height .3s ease-in-out;
  transition-delay: 0.2s;
}

.border1::after {
  right: 2px;
  top: 0;
  height: 2px;
  width: 200px;
  transition: width .3s ease-in-out;
  transition-delay: 0.2s;
}

.border1::before {
  right: 0;
  top: 0;
  height: 200px;
  width: 2px;
  transition: height .3s ease-in-out;
  transition-delay: 0.2s;
}

/* IMAGE WITH TEXT */
.image-with-text {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}

.left-side, .right-side {
  width: 50%;
}

.image-with-text .image {
  background-image: url(images/food.png);
  width: 100%;
  height: 450px;
  background-repeat: no-repeat;
  background-size: 85%;
  background-position: center;
}

.image-with-text .headline {
  color: rgba(121, 85, 72, 1);
  font-size: 40px;
}

.image-with-text .text {
  font-size: 19px;
  line-height: 23px;
}

.center-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-with-text .center-box {
  box-sizing: border-box;
  padding: 0px 50px 0px 50px;
}

/* SPECIALS BOXES */
.specials-inner {
  display: flex;
  flex-wrap: wrap;
}

.specials-inner .specials-box {
  flex: 1 1 calc(33.3333% - 40px);
  margin: 0px 20px;
  margin-top: 35px;
}

.specials-inner .specials-box .image {
  background-image: url(images/food.png);
  width: 100%;
  height: 250px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.specials {
  width: 1200px;
  margin: 0 auto;
}

.specials .header {
  font-size: 22px;
  color: rgba(224, 224, 224, 1);
  margin-bottom: 15px;
}

.specials .text-wrapper {
  padding: 0px 15px 15px 15px;
  box-sizing: border-box;
  position: relative;
}

.specials .text-wrapper span.price {
  position: absolute;
  right: 15px;
  top: 0;
}

.specials .text {
  font-size: 18px;
  line-height: 23px;
  color: rgba(224, 224, 224, 1);
}

/* Our Menu */
.item-switcher-inner {
  display: flex;
  flex-wrap: wrap;
}

.switcher-item.selected {
  background: rgba(121, 85, 72, 1);
  color: rgba(224, 224, 224, 1);
}

.switcher-item {
  flex: 1 1 25%;
  text-align: center;
  box-sizing: border-box;
  padding: 15px 0px;
  font-size: 25px;
  cursor: pointer;
  border-right: 1px solid rgba(121, 85, 72, 0.75);
  border-bottom: 1px solid rgba(121, 85, 72, 1);
  transition: all .3s ease-in-out;
}

.switcher-item:nth-child(4), .switcher-item:nth-child(7) {
  border-right: none;
}

.switcher-item:nth-child(5), .switcher-item:nth-child(6), .switcher-item:nth-child(7) {
  border-bottom: none;
}

.menu-content-box {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  padding: 25px 0px;
}

.menu-content-box.selected {
  transition: all .3s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.menu-content {
  position: relative;
}

.menu-content-box .menu-item {
  flex: 1 1 50%;
  display: flex;
  font-size: 19px;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
  max-width: 50%;
}

.menu-content-box .menu-item .price {
  position: absolute;
  right: 30px;
}

.border-1:after, .border-1:before, .border-2:after, .border-2:before, .border-3:after, .border-3:before, .border-4:after, .border-4:before {
  background: rgba(121, 85, 72, .75);
  content: "";
  position: absolute;
}

.border-1:after, .border-2:after, .border-3:after, .border-4:after {
  height: 25px;
  width: 1px;
}

.border-1:before, .border-2:before, .border-3:before, .border-4:before {
  width: 25px;
  height: 1px;
}

.border-1:after, .border-3:after, .border-1:before, .border-3:before {
  top: 0;
}

.border-2:after, .border-4:after, .border-2:before, .border-4:before {
  bottom: 0;
}

.border-1:after, .border-1:before, .border-2:after, .border-2:before {
  left: 0;
}

.border-3:after, .border-3:before, .border-4:after, .border-4:before {
  right: 0;
}

.menu-content-box .menu-item .text {
  width: 75%;
}

.menu-content-box .menu-item .text, .menu-content-box .menu-item .price {
  line-height: 21px;
}

/* BEWERTUNGEN */
.swiper-container {
  height: 260px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: rgba(224, 224, 224, 1);
}

.swiper-slide .text {
  font-size: 25px;
  line-height: 30px;
}

.swiper-slide .name {
  padding-top: 30px;
  font-size: 30px;
  font-family: 'Dancing Script', cursive;
}

.swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: rgba(224, 224, 224, 1);
}

.swiper-container .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}

.swiper-container .border-1:after, .swiper-container .border-1:before, .swiper-container .border-2:after, .swiper-container .border-2:before, .swiper-container .border-3:after, .swiper-container .border-3:before, .swiper-container .border-4:after, .swiper-container .border-4:before {
  background: rgba(224, 224, 224, 1);
}
