/* ------------------------------------------------ */

/*  !Reset  */

/* ------------------------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

figure img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

a {
  text-decoration: none;
}


/* ------------------------------------------------ */

/*  !Fonts  */

/* ------------------------------------------------ */

/* karla-regular - latin */
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  src: local(''),
    url('../fonts/karla-v15-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/karla-v15-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* karla-600 - latin */
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 600;
  src: local(''),
    url('../fonts/karla-v15-latin-600.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/karla-v15-latin-600.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* brygada-1918-regular - latin */
@font-face {
  font-family: 'Brygada 1918';
  font-style: normal;
  font-weight: 400;
  src: local(''),
    url('../fonts/brygada-1918-v8-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/brygada-1918-v8-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* brygada-1918-600 - latin */
@font-face {
  font-family: 'Brygada 1918';
  font-style: normal;
  font-weight: 600;
  src: local(''),
    url('../fonts/brygada-1918-v8-latin-600.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/brygada-1918-v8-latin-600.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* ------------------------------------------------ */

/*  !Variablen  */

/* ------------------------------------------------ */

:root {
  --color-orange: #E66225;
  --color-olive: #9A947C;
  --color-white: #FFFFFF;
  --color-light: #F7F5F0;
  --color-medium: #E6E3D8;
  --color-dark: #4D493B;
  --color-text: #26241D;
  --color-success: #4a934a;
  --fs-40: 222.22222222222223%;
  --fs-36: 200%;
  --fs-32: 177.77777777777777%;
  --fs-28: 155.55555555555554%;
  --fs-24: 133.33333333333334%;
  --fs-20: 111.11111111111111%;
  --fs-18: 100%;
  --fs-16: 88.88888888888889%;
}

/* ------------------------------------------------ */

/*  !Link-Animationen  */

/* ------------------------------------------------ */

a {
  transition: color .2s ease, background-color .2s ease;
}


/* ------------------------------------------------ */

/*  !Body  */

/* ------------------------------------------------ */

html,
body {
  height: 100%;
}

body {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Brygada 1918', serif;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-light);
}

/* ------------------------------------------------ */

/*  !Container  */

/* ------------------------------------------------ */

.container {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}

.w-1160 {
  max-width: 1240px;
}

@media screen and (max-width: 414px) {
  .container {
    padding: 0 24px;
  }
}

/* ------------------------------------------------ */

/*  !Header  */

/* ------------------------------------------------ */

header {
  position: relative;
  height: 140px;
  background-color: var(--color-white);
  z-index: 11;
}

header>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 480px) {
  header {
    height: auto;
  }

  header>.container {
    display: block;
    padding: 40px;
  }
}

@media screen and (max-width: 414px) {
  header>.container {
    padding: 40px 24px;
  }
}

/* ------------------------------------------------ */

/*  !Logo  */

/* ------------------------------------------------ */

a.logo {
  display: block;
  width: 260px;
  height: 60px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -10px;
  text-indent: -9999px;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  a.logo {
    margin-bottom: 32px;
  }
}

/* ------------------------------------------------ */

/*  !Sprachwahl  */

/* ------------------------------------------------ */

#desktop-nav,
ul.lang {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  display: flex;
}

ul.lang {
  display: flex;
}

ul.lang::after {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--color-orange);
  margin: 0 24px;
}

ul.lang li {
  padding: 0 0 0 8px;
}

ul.lang a {
  color: var(--color-text);
  padding: 2px 8px;
  border: 1px solid var(--color-dark);
  border-radius: 4px;
}

ul.lang a:hover {
  background-color: var(--color-light);
}


ul.lang a.active {
  color: var(--color-white);
  background-color: var(--color-dark);
}

@media screen and (min-width: 621px) {
  .nav-pulldown ul.lang {
    display: none;
  }
}

@media screen and (max-width: 620px) {
  header ul.lang {
    display: none;
  }

  .nav-pulldown ul.lang {
    margin: 0 0 40px 0;
  }

  .nav-pulldown ul.lang li {
    padding: 0 8px 0 0;
  }
}



/* ------------------------------------------------ */

/*  !Desktop Menu Link  */

/* ------------------------------------------------ */

#desktop-menu-link {
  display: flex;
  align-items: center;
  color: var(--color-text);
  text-transform: uppercase;
}

#desktop-menu-link::before {
  content: '';
  display: block;
  width: 22px;
  height: 16px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -79px -379px;
  margin: 0 8px 0 0;
}

@media screen and (max-width: 480px) {
  #desktop-menu-link {
    width: 100%;
    border: 1px solid var(--color-medium);
    padding: 8px;
  }
}

/* ------------------------------------------------ */

/*  !Pulldown Menu  */

/* ------------------------------------------------ */

@keyframes pulldown {
  0% {
    height: auto;
    opacity: 1;
    visibility: hidden;
    transform: translateY(-20px);
  }

  100% {
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-pulldown {
  opacity: 1;
  visibility: hidden;
  height: 0;

  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1), 0 -12px 24px rgba(0, 0, 0, .04);
  z-index: 11;
  
  will-change: transform;
}

.nav-pulldown.active {
  animation: pulldown .15s .1s ease-out forwards;
}

.nav-pulldown>.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 80px 40px;
}

.nav-pulldown>.container::before {
  position: absolute;
  top: -10px;
  right: 52px;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  transform: rotateZ(45deg);
}

@media screen and (max-width: 1140px) {
  .nav-pulldown>.container {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .nav-pulldown>.container::before {
    left: 48px;
  }
}

@media screen and (max-width: 414px) {
  .nav-pulldown>.container {
    padding: 40px 24px;
  }

  .nav-pulldown>.container::before {
    left: 32px;
  }
}


/* ------------------------------------------------ */

/*  !Pulldown Bild-Links  */

/* ------------------------------------------------ */

.nav-pulldown-col:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  grid-gap: 40px;
}

.nav-pulldown-col:nth-child(2) a {
  position: relative;
  width: 100%;
  color: var(--color-white);
  font-size: var(--fs-32);
  background-image: url('/assets/images/content/test-nav.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.nav-pulldown-col:nth-child(2) a.n-r {
  background-image: url('/assets/images/content/nav-restaurant.jpg');
}
.nav-pulldown-col:nth-child(2) a.n-u {
  background-image: url('/assets/images/content/nav-uebernachtungen.jpg');
}
.nav-pulldown-col:nth-child(2) a.n-v {
  background-image: url('/assets/images/content/nav-veranstaltungen.jpg');
}
.nav-pulldown-col:nth-child(2) a.n-a {
  background-image: url('/assets/images/content/nav-aktivitaeten.jpg');
}

.nav-pulldown-col:nth-child(2) a::after {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.nav-pulldown-col:nth-child(2) a:hover span {
  background-color: rgba(0, 0, 0, .1);
}

.nav-pulldown-col:nth-child(2) span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  display: flex;
  justify-content: center;
  align-items: center;

  transition: background-color .2s ease;
}

@media screen and (max-width: 1240px) {

  .nav-pulldown-col:nth-child(2) {
    grid-template-columns: repeat(2, 280px);
    grid-gap: 24px;
    margin-right: 40px;
  }

  .nav-pulldown-col:nth-child(2) a {
    font-size: var(--fs-28);
  }
}

@media screen and (max-width: 1140px) {

  .nav-pulldown-col:nth-child(2) {
    margin: 0 0 56px 0;
  }
}

@media screen and (max-width: 768px) {

  .nav-pulldown-col:nth-child(2) {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-pulldown-col:nth-child(2) a {
    position: relative;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 620px) {

  .nav-pulldown-col:nth-child(2) {
    grid-template-columns: repeat(1, 1fr);
  }

  .nav-pulldown-col:nth-child(2) a::after {
    padding-bottom: 35%;
  }
}

@media screen and (max-width: 414px) {
  .nav-pulldown-col:nth-child(2) a::after {
    padding-bottom: 50%;
  }
}


/* ------------------------------------------------ */

/*  !Pulldown Icon Links  */

/* ------------------------------------------------ */

.nav-pulldown-col:last-child a {
  display: flex;
  align-items: center;
  color: var(--color-text);
  font-size: var(--fs-28);
  line-height: 1;
}

.nav-pulldown-col:last-child a:hover {
  color: var(--color-orange);
}

.nav-pulldown-col:last-child li {
  margin-bottom: 16px;
}

.nav-pulldown-col:last-child li:last-child {
  border-top: 1px dashed var(--color-dark);
  padding-top: 16px;
  margin-top: 24px;
}

/* Icons */

.nav-pulldown-col:last-child a::before {
  content: '';
  display: block;
  width: 37px;
  height: 40px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -115px;
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

.nav-pulldown-col:last-child a.icn-pulldown-tel::before {
  background-position: -80px -120px;
}

.nav-pulldown-col:last-child a.icn-pulldown-mail::before {
  background-position: -140px -119px;
}

.nav-pulldown-col:last-child a.icn-pulldown-route::before {
  background-position: -200px -115px;
}


@media screen and (max-width: 1400px) {
  .nav-pulldown-col:last-child a {
    font-size: var(--fs-24)
  }
}

@media screen and (max-width: 520px) {

  .nav-pulldown-col:last-child a::before {
    width: 25px;
    height: 30px;
    margin: 0 8px 0 0;
    background-position: -280px -116px;
  }

  .nav-pulldown-col:last-child a {
    font-size: var(--fs-20);
  }

  .nav-pulldown-col:last-child a span {
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
  }

  .nav-pulldown-col:last-child a.icn-pulldown-tel::before {
    background-position: -330px -120px;
  }

  .nav-pulldown-col:last-child a.icn-pulldown-mail::before {
    background-position: -370px -119px;
  }

  .nav-pulldown-col:last-child a.icn-pulldown-route::before {
    background-position: -420px -115px;
  }
}


/* ------------------------------------------------ */

/*  !Nav Overlay  */

/* ------------------------------------------------ */

.nav-overlay {
  visibility: hidden;
  opacity: 0;
}

.nav-overlay.active {
  position: fixed;
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
  z-index: 10;
}


/* ------------------------------------------------ */

/*  !Footer-Top - Streifen ueber dem Footer  */

/* ------------------------------------------------ */

.footer-top {
  padding: 40px 0;
  background-color: var(--color-medium);
}

.footer-top ul {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-20);
}

.footer-top li {
  display: flex;
  justify-content: center;
  width: 33.333333%;
  border-right: 1px solid var(--color-white);
}

.footer-top li:last-child {
  border: none;
}

.footer-top li span::before {
  content: '';
  display: block;
  width: 47px;
  height: 50px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: 4px -300px;
  margin: 0 auto;
}

.footer-top li:nth-child(2) span::before {
  background-position: -74px -300px;
}

.footer-top li:nth-child(3) span::before {
  background-position: -140px -300px;
}

.footer-top a {
  color: var(--color-text);
}

@media screen and (max-width: 1080px) {

  .footer-top ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-top li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 36px;
    margin-bottom: 32px;
  }

  .footer-top li:last-child {
    margin-bottom: 0;
  }

}

/* ------------------------------------------------ */

/*  !Footer  */

/* ------------------------------------------------ */

footer {
  color: var(--color-light);
  background-color: var(--color-dark);
  padding: 120px 0;
  background-image: url('/assets/images/layout/muehlrad-footer.svg');
  background-repeat: no-repeat;
  background-position: 90% 180%;
  background-size: 563px;
}

footer a {
  color: var(--color-light);
}

footer a:hover {
  color: var(--color-orange);
}

.footer-nav {
  display: flex;
  font-size: var(--fs-20);
  margin-bottom: 56px;
}

.footer-nav .col:first-child {
  margin-right: 160px;
}

.footer-nav ul {
  margin-bottom: 40px;
}

.footer-nav .col ul:first-child li:first-child {
  font-size: var(--fs-20);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: .05rem;
}

.footer-nav .col span {
  display: inline-block;
  width: 16px;
  color: var(--color-orange);
}

.footer-route {
  display: flex;
}

.footer-route::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -220px -300px;
  margin: 2px 12px 0 0;
}

.footer-nav .col:last-child li::before {
  content: '·';
  display: inline-block;
  margin-right: 8px;
  color: var(--color-orange);
}

.footer-nav .col:last-child li:first-child::before {
  display: none;
}

/* Legal */
.footer-legal ul {
  display: flex;
}

.footer-legal li::after {
  content: '|';
  display: inline-block;
  color: var(--color-orange);
  margin: 0 12px;
}

.footer-legal li:last-child::after {
  display: none;
}

@media screen and (max-width: 860px) {
  .footer-nav .col:first-child {
    margin-right: 80px;
  }
}

@media screen and (max-width: 768px) {

  footer {
    background-position: 100% 120%;
  }

  .footer-nav {
    display: block;
    text-align: center;
  }
  
  .footer-route {
    display: flex;
    justify-content: center;
  }
  
  .footer-nav .col:last-child li::before {
    display: none;
  }

  .footer-nav .col:first-child {
    margin: 0 0 32px 0;
    border-bottom: 1px dashed var(--color-olive);
  }

  .footer-legal ul {
    display: block;
    text-align: center;
  }

  .footer-legal li::after {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .footer-nav {
    font-size: var(--fs-18);
  }
}

/* ------------------------------------------------ */

/*  !TYPO  */

/* ------------------------------------------------ */

h1 {
  font-size: var(--fs-36);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.3;
}

h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background-color: var(--color-orange);
  margin: 8px auto 56px auto;
}

h3 {
  font-size: var(--fs-32);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.3;
}

h4 {
  font-size: var(--fs-24);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

p, .card-white-item ul {
  margin-bottom: 24px;
}

@media screen and (max-width: 414px) {
  h1 {
    font-size: var(--fs-32);
  }
}

/* ------------------------------------------------ */

/*  !Buttons  */

/* ------------------------------------------------ */

a.btn {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  border: 1px solid var(--color-olive);
  padding: 24px 32px;
  line-height: 1;
  font-size: var(--fs-20);
}

a.btn::after {
  content: '';
  display: block;
  width: 20px;
  height: 16px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -379px;
  margin: 3px 0 0 8px;
  transition: transform .2s ease;
  flex-shrink: 0;
}

a.btn:hover::after {
  transform: translateX(5px);
}

/* ------------------------------------------------ */

/*  !Block Text  */

/* ------------------------------------------------ */

.block-text {
  margin: 0 0 120px 0;
}

.block-text-padding-top {
  padding-top: 80px;
}

.block-text-item {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs-20);
  line-height: 1.7;
}

.block-text-item.wheel {
  background-size: contain;
  background-position: 80% 50%;
}

@media screen and (max-width: 414px) {
  
  .block-text-item {
    font-size: var(--fs-18);
   
  }
}


/* ------------------------------------------------ */

/*  !Block Reservierung  */

/* ------------------------------------------------ */

.block-reservierung {
  padding: 0 0 120px 0;
}

.block-reservierung .cols {
  display: flex;
  justify-content: center;
}

.block-reservierung .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
}

.block-reservierung .col p {
  margin-bottom: 40px;
}

.block-reservierung hr {
  margin: 0 80px;
  border: none;
  width: 1px;
  background-color: var(--color-olive);
  flex-shrink: 0;
}

.block-reservierung h3 {
  margin-bottom: 24px;
}

.block-reservierung .col p:last-child {
  margin-top: auto;
}

.gutschein::before, .reservierung::before {
  content: '';
  display: block;
  width: 64px;
  height: 50px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -200px;
  margin-bottom: 32px;
}

.reservierung::before {
  background-position: -136px -200px;
}

@media screen and (max-width: 960px) {
  .block-reservierung hr {
    margin: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .block-reservierung .cols {
    display: block;
  }
  
  .block-reservierung .col {
    margin: 0 auto;
  }
  
  .block-reservierung hr {
    margin: 40px auto;
    width: 100%;
    height: 1;
    max-width: 440px;
    background-color: transparent;
    border-bottom: 1px dashed var(--color-olive);
  }
  
}

/* ------------------------------------------------ */

/*  !Cards Grid */

/* ------------------------------------------------ */

.cards {
  padding: 0 0 120px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 40px;
  row-gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.cards-grid-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.cards-grid-item figure {
  overflow: hidden;
}

.cards-grid-item figure img {
  transition: transform .5s ease;
}

.cards-grid-item > a:hover figure img {
  transform: scale(1.02);
}

.cards-grid-item-text {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background-color: rgba(255,255,255,.75);
  height: 100%;
}

.cards-grid-item-text h3 {
  text-transform: none;
  margin-bottom: 16px;
}

.cards-grid-item-text p:nth-child(2) {
  margin-bottom: 40px;
}

.cards-grid-item-text p:last-child {
  margin: auto 0 0 0;
}

@media screen and (max-width: 768px) {
  .cards-grid {
    display: block;
  }
  
  .cards-grid-item {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 414px) {
  .cards-grid-item-text {
    padding: 24px;
  }
}

/* ------------------------------------------------ */

/*  !Muehlrad Hintergrund im Content  */

/* ------------------------------------------------ */

.wheel {
  background-image: url('/assets/images/layout/muehlrad-content.svg');
  background-repeat: no-repeat;
  background-position: 60% center;
}

/* ------------------------------------------------ */

/*  !Card weiss  */

/* ------------------------------------------------ */

.card-white {
  padding: 0 0 120px 0;
}

.card-white-item {
  background-color: var(--color-white);
  padding: 56px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.card-white h3 {
  margin-bottom: 16px;
}

.card-white a {
  color: var(--color-text);
}

.card-white a:hover {
  color: var(--color-orange);
}

.card-white li {
  padding: 0 0 0 12px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -490px -476px;
}

.two-cols {
  columns: 2;
  column-gap: 80px;
}

.card-white-item.flex {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 40px;
  row-gap: 40px;
}

@media screen and (max-width: 1080px) {
  .card-white-item.flex {
    grid-template-columns: repeat(2,1fr);
  }
}



@media screen and (max-width: 768px) {
  .card-white-item {
    padding: 40px;
  }
  
  .card-white-item.flex {
    display: block;
  }
  
  .card-white-item > div {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px dashed var(--color-olive);
  }
  
  .card-white-item > div:last-child {
    border: none;
    padding: 0;
  }
  
}

@media screen and (max-width: 414px) {
  .card-white-item {
    padding: 24px;
  }
}


/* ------------------------------------------------ */

/*  !Imageset  */

/* ------------------------------------------------ */

.imageset {
  padding: 0 0 120px 0;
}

.imageset .grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 5px;
  row-gap: 5px;
}

.imageset figure {
  background-position: center center;
  background-size: cover;
}

.imageset figure::after {
  content:'';
  display: block;
  padding-bottom: 56.25%;
}

.imageset .grid figure:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.imageset .grid figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.imageset .grid figure:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.imageset .grid figure:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}

.imageset .grid figure:nth-child(5) {
  grid-column: 3
  grid-row: 2;
}

@media screen and (max-width: 768px) {
  .imageset .grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .imageset .grid figure:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  
  .imageset .grid figure:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .imageset .grid figure:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  
  .imageset .grid figure:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  
  .imageset .grid figure:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
  
}


/* ------------------------------------------------ */

/*  !Hero Image  */

/* ------------------------------------------------ */

.hero {
  margin-bottom: 80px;
  opacity: 0;
  transition: opacity .5s ease-out;
}

.hero.active {
  opacity: 1;
}

.hero-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-container::after {
  content: '';
  display: block;
  padding-bottom: 43.75%;
}

.hero figure {
  
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  
  transition: transform 2s ease, opacity 2s ease;
  transform: scale(1.05);
  opacity: 0;
}

.hero figure.active {
  opacity: 1;
  transform: scale(1);
}

.hero figure.active figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.2);
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero figure figcaption {
  display: none;
}

.hero figcaption span {
  color: var(--color-white);
  font-weight: 400;
  font-size: var(--fs-36);
  line-height: 1.2;
  max-width: 880px;
  padding: 0 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero-container::after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
  }
  
  .hero figcaption span {
    font-size: var(--fs-24);
  }
}

@media screen and (max-width: 414px) {
  .hero figcaption span {
    font-size: var(--fs-18);
    line-height: 1.2;
  }
}


/* ------------------------------------------------ */

/*  !Hero Slider Controls  */

/* ------------------------------------------------ */

.controls {
  display: flex;
  justify-content: center;
}

.controls ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  transform: translateY(-50%);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  font-size: var(--fs-16);
  border: 1px solid var(--color-medium);
  border-radius: 4px;
}

.controls a {
  display: block;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -170px -367px;
}

.controls li:nth-child(2) {
  width: 60px;
  text-align: center;
}

.controls li:last-child a {
  background-position: -198px -367px;
}

.controls li {
  padding: 0 4px;
}

.controls li span.orange {
  color: var(--color-orange);
  margin: 0 4px;
}


@media screen and (max-width: 768px) {
  .controls ul {
    transform: translateY(0);
    margin-top: 24px;
  }
}

/* ------------------------------------------------ */

/*  !Breadcrumbs  */

/* ------------------------------------------------ */

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--color-dark);
}

.breadcrumbs a::after {
  content: '/';
  color: var(--color-orange);
  margin: 0 8px;
}

.breadcrumbs li:last-child a::after {
  display: none;
}

/* ------------------------------------------------ */

/*  !Card white Restaurant  */

/* ------------------------------------------------ */

.card-white-item.restaurant {
  text-align: center;
}

.card-white-item.restaurant h3 {
  margin-bottom: 40px;
}

.card-white-item.restaurant > div {
  border: none;
  padding-bottom: 0;
}

.card-white-item.restaurant strong {
  color: var(--color-orange);
  font-size: var(--fs-20);
}

/* ------------------------------------------------ */

/*  !Card white Uebernachtung  */

/* ------------------------------------------------ */

.card-white-item.uebernachtung {
  text-align: center;
}

.card-white-item.uebernachtung h3 {
  margin-bottom: 40px;
}

.card-white-item.uebernachtung > div {
 border: none;
 padding-bottom: 0;
}

.card-white-item.uebernachtung .table {
  margin-bottom: 8px;
}

.table-zusatz {
  font-size: var(--fs-16);
  margin-bottom: 40px;
}

.important {
  font-size: var(--fs-20);
  color: var(--color-orange);
  border-radius: 4px;
  margin-bottom: 40px;
}

.important::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 8px auto;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -450px -200px;
}


/* ------------------------------------------------ */

/*  !Card white Anfahrt  */

/* ------------------------------------------------ */

.card-white-item.anfahrt {
  text-align: center;
}


/* ------------------------------------------------ */

/*  !Div Table  */

/* ------------------------------------------------ */

.table {
  margin-bottom: 40px;
  text-align: center;
  
}

.table-row {
  display: flex;
  border: 1px solid var(--color-medium);
  padding: 0;
  margin: -1px 0 0 0;
}

.table-row .table-col:first-child {
  border-right: 1px solid var(--color-medium);
  font-weight: 600;
}

.table-col {
  width: 50%;
  padding: 16px 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .table-row {
    display: block;
  }
  
  .table-row .table-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--color-medium);
    background-color: var(--color-light);
  }
  
  .table-col {
    width: 100%;
  }
}


/* ------------------------------------------------ */

/*  !Google-Map  */

/* ------------------------------------------------ */

#map {
  max-width: 1600px;
  margin: 0 auto 80px auto;
}

#map::after {
  content: '';
  display: block;
  padding-bottom: 43.75%;
}

@media screen and (max-width: 768px) {
  #map::after {
    padding-bottom: 56.25%;
  }
}

/* ------------------------------------------------ */

/*  !Download Speisekarte  */

/* ------------------------------------------------ */

.speisekarte-item {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 80px auto;
}

.speisekarte-item h3 {
  margin-bottom: 16px;
}

.speisekarte-item h3::before {
  content: '';
  display: block;
  width: 42px;
  height: 37px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -250px -200px;
  margin: 0 auto 16px auto;
}

/* ------------------------------------------------ */

/*  !Forms  */

/* ------------------------------------------------ */

form, form li {
  width: 100%;
}

form ul {
  margin-bottom: 40px;
}

.card-white form li {
  margin-bottom: 16px;
  background: none;
  padding-left: 0;
}

.list-flex {
  display: flex;
  align-items: flex-start;
}

.list-flex p {
  margin: -2px 0 0 0;
  line-height: 1.3;
  max-width: 800px;
}

.list-flex input[type="checkbox"] {
  margin: 2px 8px 0 0;
}

label {
  display: block;
  margin-bottom: 2px;
  font-size: var(--fs-16);
}

input[type="text"], input[type="password"] {
  min-width: auto;
  width: 100%;
  max-width: 800px;
}

input[type="text"], 
input[type="password"] {
  border: 1px solid var(--color-dark);
  padding: 8px 16px;
}

textarea {
  border: 1px solid var(--color-dark);
  width: 100%;
  max-width: 800px;
  padding: 8px 16px;
  min-height: 160px;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark);
  margin: 0 8px 0 0;
  padding: 7px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid var(--color-white);
  background-color: var(--color-orange);
}

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark);
  border-radius: 14px;
  margin: 2px 8px 0 0;
  padding: 7px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid var(--color-white);
  border-radius: 14px;
  background-color: var(--color-orange);
}

button[type="submit"] {
  border: none;
  color: var(--color-white);
  background-color: var(--color-orange);
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease-in-out;
}

form li button {
  margin-top: 16px;
}

.small {
  font-size: var(--fs-16);
  max-width: 800px;
  margin: 0 0 16px 0;
}

.small.error {
  color: var(--color-orange);
}

li.small.error {
  padding: 0;
  margin: 0 0 4px 0;
}


/* ------------------------------------------------ */

/*  !Messages  */

/* ------------------------------------------------ */

.message {
  padding: 24px;
  margin-bottom: 24px;
  font-family: 'Karla';
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 4px;
}

.message.success {
  background-color: var(--color-success);
}


/* ------------------------------------------------ */

/*  !Consent-Overlay + -Modal  */

/* ------------------------------------------------ */


/* Animation */
@keyframes slideIn {
  
  0% {
  visibility: hidden;
  transform: translateY(-100%);
  }

  100% {
  visibility: visible;
  transform: translateY(0);
  }
}

/* Styles */

.consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  overflow-y: scroll;
  z-index: 20;
}

.consent-modal {
  background: #fff;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, .3);
  visibility: hidden;
  transform: translateY(-100%);

  /* Animation Modal */
  animation: slideIn .5s ease-out 1s forwards;
}

.consent-modal-inner {
  padding: 40px;
}

.consent-modal-inner h3 {
  font-size: 125%;
  margin-bottom: 20px;
  font-weight: 600;
}

.consent-modal-inner p {
  font-size: 100%;
  line-height: 1.6;
  margin-bottom: 40px;
}

.consent-modal-inner p a {
  color: var(--color-orange);
}

.consent-modal-inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.consent-modal-inner ul:last-child {
  margin: 0;
}

.consent-modal-inner ul li:first-child {
  margin-right: 20px;
}

.consent-btns a {
  color:#323B45;
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark);
  border-radius: 2px;
  transition: background-color .1s ease, border-color .1s ease;
  white-space: nowrap;
}

.consent-btns a:hover, #consent-btn-primary:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
}

#consent-btn-primary {
  color:#323B45;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark);
}

@media screen and (max-width: 840px) {
  .consent-modal {
  margin: 0 auto;
  }
}


@media screen and (max-width: 560px) {
  .consent-modal-inner ul {
  display: block;
  }

  .consent-modal-inner ul li:first-child {
  margin: 0 0 10px 0;
  }

  .consent-btns a {
  display: block;
  width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .consent-overlay {
  padding: 0 10px 10px 10px;
  }

  .consent-modal {
  margin: 0 auto;
  }
}
