/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Luckiest+Guy|Roboto:300,400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 60px;
  line-height: 60px;
  color: #1d1d1b;
}

h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 40px;
  line-height: 40px;
  color: #1d1d1b;
}

h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 30px;
  line-height: 30px;
  color: #1d1d1b;
}

h4 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 22px;
  line-height: 22px;
  color: #1d1d1b;
}

h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #1d1d1b;
}

p.big {
  font-size: 22px;
}

.p--small {
  font-size: 16px;
  line-height: 19px;
  color: #e7dfcc;
  font-weight: 100;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 30px;
  }

  p.big {
    font-size: 20px;
  }

  p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
  }
}

/* ALLGEMEIN */

body {
  background-color: #e7dfcc;
}

.container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.container {
  max-width: 1440px;
  padding: 0 50px 0 50px;
}

.container--content {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .container-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*NAVIGATION*/

header {
  background-color: #1d1d1b;
  position: fixed;
  z-index: 100;
}

.logo-link {
  font-family: 'Luckiest Guy', cursive;
  font-size: 28px;
  color: #e7dfcc !important;
}

.nav-wrap {
  background-color: #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 12px;
  padding-right: 70px;
}

.top-menu {
  top: 5px;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background-color: #f9a530;
}

.mid-menu {
  top: 13px;
  width: 25px;
  height: 2px;
  border-radius: 10px;
}

.bottom-menu {
  top: 21px;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background-color: #f9a530;
}

.menui {
  background: #fff;
  transition: 0.6s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
  margin-top: 10px;
  position: absolute;
}

.icon {
  z-index: 999;
  position: relative;
  /*    background: rgba(0, 0, 0, 0.21);*/

  display: block;
  height: 32px;
  width: 32px;
}

a.icon {
  color: #e7dfcc;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
}

.instagram-icon img {
  width: 8vh;
  margin-top: 40px;
}

.mobilenav {
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #1d1d1b;
  opacity: 0.95;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.mobilenav-open {
  display: flex !important;
}

.mobilenav li {
  list-style-type: none;
  text-align: center;
  padding: 10px;
}

.mobilenav li a {
  font-family: 'Luckiest Guy', cursive;
  font-size: 6vh;
  color: #fff;
  display: block;
  text-decoration: none;
  margin: auto;
  transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
  -moz-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
}

.mobilenav li a:hover {
  color: #f1d15b;
  display: block;
  text-decoration: none;
}

.mobilenav li:first-child {
  margin-top: 20vh;
}

#mycontent {
  width: 70%;
  margin: auto;
  text-align: center;
}

#mycontent p {
  border-top: 20px solid rgba(16, 144, 67, 1);
  background-color: #fff;
  color: #333;
  padding: 20px 30px 30px;
}

@media (max-width: 768px) {
  .container.nav-wrap {
    padding-left: 20px;
    padding-right: 50px;
  }
}

/* HERO */

#hero {
  position: relative;
  z-index: -2;
  background-image: url('../img/pano-hero.jpeg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 75vh;
  overflow: hidden;
}

.hero-icon {
  position: absolute;
  bottom: -1px;
  left: -74vw;
  width: 100vw;
  z-index: 2;
}

.hero-darker {
  width: 100%;
  height: 600px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 71%
  );
}

@media (max-width: 768px) {
  #hero {
    height: 50vh;
  }
}

/* WELCOME */

#welcome {
  padding-top: 150px;
  padding-left: 100px;
}

.pano-people {
  margin-top: 40px;
  width: 240px;
}

.calendar {
  z-index: -1;
}

@media (max-width: 768px) {
  .welcome-text {
    text-align: center;
  }

  #welcome {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 150px;
  }

  .pano-people {
    max-width: 160px;
    display: block;
    margin: 40px auto 30px auto;
  }
}

/* Menu */

#menu {
  background-image: url(../img/menu-bg.jpg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.menu-darken {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  padding-top: 100px;
  padding-bottom: 100px;
}

#menu h2,
#menu p {
  color: #1d1d1b;
}

button.view-pdf {
  width: 220px;
  height: 220px;
  border: none;
  border-radius: 0;
  margin-left: 20px;
}

button.view-pdf p {
  font-size: 25px;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

button.drinks p {
  color: #a4871f !important;
}

button.food p {
  color: #4e1006 !important;
}

button.drinks:hover {
  background-color: #f1d15b !important;
  color: #a4871f;
}

button.food:hover {
  background-color: #982916;
  color: #4e1006;
}

.drinks {
  background-color: #f1d15b;
  color: #a4871f;
}

.food {
  background-color: #982916;
  color: #4e1006;
}

.pdf-buttons {
  text-align: center;
}

button.view-pdf img {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 20px;

  transition: 0.3s ease;
}

button.view-pdf:hover img {
  transform: translateY(-10px);
}

button.view-pdf:focus {
  box-shadow: none;
}

div.menu-drinks {
  width: 42px;
  height: 47px;
  background-image: url(../img/drinks.svg);
  background-repeat: no-repeat;
}

#modal-drinks .modal-header {
  background-color: #f1d15b;
  border-radius: 0;
}

#modal-food .modal-header {
  background-color: #982916;
  border-radius: 0;
}

#modal-food .modal-title {
  color: #d7cdb6;
}

.modal-footer {
  border-top: none;
  justify-content: center;
}

.modal-content {
  border-radius: 0;
  border: 0;
}

.modal-body {
  text-align: left;
  padding-top: 30px;
}

.modal-body h4 {
  background-color: #1d1d1b;
  color: #fff;
  padding-top: 6px;
  padding-left: 2px;
  padding-right: 1px;
  display: inline;
}

.modal-body h5 {
  text-transform: unset;
}

.modal-body h6.menu-small {
  font-size: 14px;
  line-height: 14px !important;
  margin-top: -5px;
  margin-bottom: 18px;
}

.menu-section {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}

.menu-anchor {
  margin-bottom: 30px;
}

.menu-anchor a {
  display: inline-block;
  padding: 6px 8px;
  background-color: #982916;
  color: #fff;
  transition: 0.3s ease;
  margin-bottom: 3px;
}

.menu-anchor a:hover {
  text-decoration: none;
  background-color: #4e1006;
}

.intro {
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 40px;
}

.menu-text h2,
.menu-text p {
  color: #d7cdb6 !important;
}

@media (max-width: 768px) {
  #menu {
    background-attachment: inherit;
  }

  .pdf-buttons {
    padding: 0;
  }

  button.view-pdf p {
    letter-spacing: 0;
  }

  .menu-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .view-pdf.drinks {
    margin-right: 5px;
  }

  .view-pdf.food {
    margin-left: 5px;
  }

  .menu-darken {
    padding-top: 0;
    padding-bottom: 0;
  }

  button.view-pdf {
    margin-left: 0;
  }

  .pdf-buttons button.view-pdf {
    width: 140px;
    height: 200px;
  }

  button.view-pdf p {
    font-size: 20px;
  }
}

/* EVENTS */

#events h2 {
  margin: 0 auto;
  margin-bottom: 10px;
}

.events-teaser {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.event-card {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
  max-width: 270px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
  padding: 0;
  overflow: hidden;
}

.card-dark {
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 36%,
    rgba(0, 0, 0, 0.6) 79%
  );
  opacity: 1;
  transition: 0.3s ease;
}

.card-darker {
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 23%,
    rgba(0, 0, 0, 0.83) 73%
  );
  transition: 0.3s ease;
  opacity: 0;
}

.event-card-wrap {
  margin-top: 40px;
  justify-content: center;
}

.card-text h4 {
  color: #f1d15b;
  margin-bottom: 2px;
}

.card-text h5 {
  display: inline;
  color: #e7dfcc;
}

.card-text p {
  opacity: 0;
  display: none;
  transition: all 0.3s ease;
  transition-delay: 0.2s;
}

.divider {
  width: 38px;
  height: 3px;
  background-color: #f1d15b;
  margin-top: 6px;
  opacity: 0;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.card-text {
  position: absolute;
  bottom: 0;
  padding: 0 10px 10px 25px;
  transition: all 0.3s ease;
}

.event-card__icon {
  background-color: #a4871f;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.7);
  padding: 8px;
  margin-left: 25px;
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.3s ease;
}

.event-card:hover {
  cursor: pointer;
}

.event-card:hover .event-card__icon {
  transform: translateY(0);
  opacity: 1;
}

.event-card:hover .card-text {
  transform: translateY(0);
}

.event-card:hover .card-text p {
  display: inline-block;
  position: static;
  transition: opacity 1s linear;
  opacity: 1;
}

.event-card:hover .divider {
  opacity: 1;
}

.event-card:hover .card-dark {
  opacity: 0;
}

.event-card:hover .card-darker {
  opacity: 1;
}

.event-card.karaoke {
  background-image: url('../img/karaoke.jpg');
}

.event-card.thirsty {
  background-image: url('../img/thirsty-thursday.jpg');
}

.event-card.fruehshoppen {
  background-image: url('../img/fruehshoppen.jpg');
}

.event-card.cocktail {
  background-image: url('../img/hero.jpg');
}

.event-card.quiz {
  background-image: url('../img/quiz.jpg');
}

.event-card.burger {
  background-image: url('../img/burger.jpg');
}

.event-card.lp {
  background-image: url('../img/lp.jpg');
}

@media (max-width: 768px) {
  .card-text p {
    display: inline-block;
    opacity: 1;
  }

  .divider {
    opacity: 1;
  }

  .card-dark {
    opacity: 1;
  }
}

/* 360 */

#rundgang {
  margin-top: -150px;
}

#rundgang h2 {
  color: #e7dfcc;
  text-align: center;
}

.rundgang-text {
  position: relative;
  top: 168px;
  padding-top: 50px;
  padding-bottom: 70px;
  background-image: linear-gradient(
    180deg,
    rgba(17, 2, 0, 0.8) 32%,
    rgba(17, 2, 0, 0) 100%
  );
}

@media (max-width: 768px) {
  .rundgang-text {
    top: 158px;
  }
}

@media (max-width: 492px) {
  .rundgang-text {
    top: 188px;
  }
}

/* CONTACT */

#contact a {
  background-color: #982916;
  padding: 20px;
  color: #e7dfcc;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

#contact a:hover {
  text-decoration: none;
  background-color: #4e1006;
}

#contact a img {
  transition: 0.3s ease;
}

#contact a:hover img {
  transform: scale(1.1);
}

.contact-map {
  text-align: right;
}

img.map {
  margin-right: 40px;
}

@media (max-width: 768px) {
  .contact-text {
    text-align: center;
  }

  img.map {
    margin-right: 0;
  }

  .contact-map {
    text-align: center;
    margin-top: 50px;
  }
}

footer {
  background-color: #1d1d1b;
  padding-top: 50px;
  padding-bottom: 50px;
}

.rights a {
  font-family: Luckiest Guy;
  color: #fff;
  font-size: 20px;
  margin-right: 18px;
  transition: 0.3s ease;
}

.rights a:hover {
  color: #f1d15b;
  text-decoration: none;
}

.logo-footer {
  max-width: 160px;
}

.footer-logo {
  text-align: center;
}

footer .row {
  align-items: center;
}

footer .social-icons {
  text-align: right;
}

footer .social-icons img {
  max-width: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.map {
  max-width: 300px;
}

@media (max-width: 768px) {
  .rights {
    text-align: center;
    margin-bottom: 30px;
  }

  footer .social-icons {
    text-align: center;
    margin-top: 40px;
  }

  .rights a {
    margin-left: 18px;
  }
}

/* TABLE */

.fc th {
  text-align: left !important;
}

.fc-bg {
  background-color: #d7cdb6;
}

.fc td {
  border-color: #e7dfcc !important;
  border-width: 3px !important;
}

.fc td.fc-today {
  background-color: #f1d15b !important;
}

.fc-button-primary:disabled {
  background-color: #982916 !important;
  border: none !important;
}

.fc-button-primary {
  background-color: #982916 !important;
  border: none !important;
}

.fc-event {
  border: none !important;
  background-color: transparent !important;
  color: #982916 !important;
  line-height: 15px !important;
}

.fc-time {
  display: none !important;
}

.fc-day-grid-event .fc-content {
  white-space: inherit !important;
}

.welcome .fc-row .fc-week .fc-widget-content {
  height: auto !important;
}

.welcome .fc-scroller .fc-day-grid-container {
  height: auto !important;
}

.fc-widget-content .fc-day-grid-container {
  overflow: inherit !important;
}

.fc-title {
  font-family: 'Roboto Condensed', sans-serif;
}

.fc-widget-content .fc-row {
  height: auto !important;
}

@media (max-width: 1090px) {
  #calendar {
    margin-top: 50px;
  }
}

@media (max-width: 500px) {
  .fc-toolbar {
    flex-direction: column;
  }
}

.instagram {
  background-color: #1d1d1b;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: -169px;
}

@media (max-width: 491px) {
  .instagram {
    margin-bottom: -188px;
  }
}

.socialmedia {
  text-align: center;
}

.socialmedia h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #e7dfcc;
  letter-spacing: 3px;
  margin-bottom: 0;
  padding-bottom: 80px;
}

.instagram-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 100px;
  max-width: 1467px;
  margin: 0 auto;
}

.instagram-photo {
  width: 230px;
  margin: 30px;
}

.instagram-photo:focus::after,
.instagram-photo:hover::after {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 768px) {
  .instagram-photo:nth-child(4),
  .instagram-photo:nth-child(5),
  .instagram-photo:nth-child(6) {
    display: none;
  }
}

.instagram-photo img {
  width: 100%;
  height: auto;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.34);
}

@media (max-width: 1126px) {
  .info {
    top: 300px;
  }
}
