/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  /* Colors */
  --primary-color: #C8B3D5;
  --primary-color-hover: #B7A0C5;
  --secondary-color: #522A18;
  --black-color: #1E1E1E;
  --white-color: #ffffff;
  --grey-color: #E3D9EA;
  --light-color: #F9F7FB;

  /* Spacing */
  --spacing-large: 80px;
  --spacing-medium: 40px;
  --spacing-small: 30px;
  --spacing-col: 30px;
  --height-navigation: 98px;

  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-h1: 40px;
  --font-size-h2: 36px;
  --font-size-h3: 20px;
  --font-size-h2-number: 50px;
  --font-size-lead: 18px;
  --font-size-small: 14px;
  --font-size-tiny: 12px;

  /* Sonstiges */
  color-scheme: light;
}

@media (min-width: 992px) {
:root {
  /* Spacing */
  --spacing-large: 120px;
  --spacing-medium: 80px;
  --spacing-small: 40px;
  --spacing-col: 30px;

  /* Font Sizes */
  --font-size-base: 18px;
  --font-size-h1: 64px;
  --font-size-h2: 56px;
  --font-size-h3: 24px;
  --font-size-h2-number: 80px;
  --font-size-lead: 22px;
  --font-size-small: 16px;
  --font-size-tiny: 14px;
}
}

@media (min-width: 1200px) {
:root {
  --height-navigation: 162px;
}
}

@media (min-width: 1400px) {
:root {
  --font-size-h2-number: 100px;
  --font-size-h3: 28px;
}
}

@media (max-width: 575px) { :root { --container-width: 100%; } }
@media (min-width: 576px) { :root { --container-width: 540px; } }
@media (min-width: 768px) { :root { --container-width: 720px; } }
@media (min-width: 992px) { :root { --container-width: 960px; } }
@media (min-width: 1200px) { :root { --container-width: 1140px; } }
@media (min-width: 1400px) { :root { --container-width: 1320px; } }
@media (min-width: 1600px) { :root { --container-width: 1520px; } }
@media (min-width: 2000px) { :root { --container-width: 1820px; } }

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--black-color);
  font-size: var(--font-size-base);
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.container {
    max-width: var(--container-width)!important;
}

.section-spacing-lg {
  padding-top: var(--spacing-large);
  padding-bottom: var(--spacing-large);
}

.mt-navbar {
  margin-top: var(--height-navigation);
}

.mt-lg {
  margin-top: var(--spacing-large);
}

.mb-lg {
  margin-bottom: var(--spacing-large);
}

.pt-lg {
  padding-top: var(--spacing-large);
}

.pb-lg {
  padding-bottom: var(--spacing-large);
}

.mb-col {
  margin-bottom: 30px;
}

.slidescroller {
  margin-top: calc(var(--height-navigation) * -1);
  padding-top: var(--height-navigation);
}

@media (max-width: 1199px) {
.mb-col-xl {
  margin-bottom: 30px;
}
}

@media (max-width: 991px) {
.mb-col-lg {
  margin-bottom: 30px;
}
}

@media (max-width: 767px) {
.mb-col-md {
  margin-bottom: 30px;
}
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/

.bg-main {
  background-color: var(--primary-color)!important;
}

.bg-light {
  background-color: var(--light-color)!important;
}

.bg-dark {
  background-color: var(--secondary-color)!important;
}

.bg-dark-half {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--white-color)), color-stop(50%, var(--white-color)), color-stop(50%, var(--secondary-color)), to(var(--secondary-color))) !important;
  background: linear-gradient(to bottom, var(--white-color) 0, var(--white-color) 50%, var(--secondary-color) 50%, var(--secondary-color) 100%) !important;;
}

.bg-dark a {
  color: var(--white-color)!important;
}

.bg-dark a:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
  color: var(--primary-color);
  text-decoration: none!important;
}

a:hover,
a:focus {
  color: var(--primary-color-hover);
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

h1 {
  font-size: var(--font-size-h1);
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-h2);
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
}

h2.number {
  font-size: var(--font-size-h2-number);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
}

.lead {
  font-size: var(--font-size-lead);
  font-weight: 400;
}

.bolder-lead {
  font-weight: 500;
}

strong, .strong {
  font-weight: 600!important;
}

.text-tag {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn,
.btn-tag {
  padding: .6rem 1.5rem;
  font-size: var(--font-size-base);
  border-radius: 10px;
}

.btn-sm {
  padding: .3rem 1rem;
  font-size: var(--font-size-small);
}

@media (max-width: 991px) {
.btn,
.btn-tag {
  padding: .5rem 1rem;
  font-size: var(--font-size-base);
}
.btn-sm {
  padding: .3rem .8rem;
  font-size: var(--font-size-small);
}
}

.btn-main {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  color: var(--white-color)!important;
  background: var(--primary-color-hover)!important;
  border-color: var(--primary-color-hover)!important;
}

.btn-main-outline {
  color: var(--primary-color);
  background: none;
  border-color: var(--primary-color);
}

.btn-main-outline:hover,
.btn-main-outline:focus,
.btn-main-outline:active {
  color: var(--white-color)!important;
  background: var(--primary-color-hover)!important;
  border-color: var(--primary-color-hover)!important;
}

.btn-tag-wrapper {
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-tag {
  color: var(--primary-color);
  background: none;
  border-color: var(--primary-color);
  border-width: 1px;
  border-style: solid;
  display: inline-block;
}

.btn-tag img {
  height: 22px;
  width: 22px;
  margin-top: -4px;
  margin-left: -4px;
  margin-right: 8px;
}

@media (max-width: 1199px) {
.btn-tag-wrapper {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 1rem 1rem; 
  grid-template-areas: 
    ". ."
    ". ."; 
}
}

@media (max-width: 767px) {
.btn-tag {
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
}
.btn-tag img {
  height: 26px;
  width: 26px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.card {
  border-radius: 12px;
}

.card-body {
    padding: 30px;
}

.card-footer {
    padding: 0 30px 30px 30px;
    background: none;
    border-top: none
}

.card-img-top {
  border-radius: 12px 12px 0 0;
}

@media (max-width: 991px) {
.card-body {
    padding: 20px;
}

.card-footer {
    padding: 0 20px 20px 20px;
}
}

.booking-card {
  border-radius: 12px;
  z-index: 4;
  position: relative;
  background: white;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}

.best-price {
  z-index: 5;
  width: 176px;
  height: 176px;
  border-radius: 100px;
  padding: 20px;
  position: relative;
  margin-bottom: -80px;
  left: 3rem;
  top: -5rem;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  background: var(--primary-color);
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.booking-container-header {
  margin-top: -60px;
}

@media (max-width: 1399px) {
.booking-card {
  margin-top: 3.5rem;
}
}

@media (max-width: 1199px) {
.best-price {
  font-size: var(--font-size-small);
  width: 140px;
  height: 140px;
  border-radius: 70px;
  left: 1.5rem;
  top: -5rem;
}
.booking-container-header {
  margin-top: -120px;
}
}

@media (max-width: 575px) {
.best-price {
  left: 1rem;
  top: -5rem;
}
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/

th {
  font-weight: 600!important;
}

.table-prices {
  overflow-x: auto;
  font-size: var(--font-size-small);
}

.table-prices>:not(caption)>*>* {
  padding-left: 0;
} 

.table-prices .col-02,
.table-prices .col-03,
.table-prices .col-04 {
  max-width: 300px;
  width: 300px;
}

@media (max-width: 1399px) {
.table-prices .col-02,
.table-prices .col-03,
.table-prices .col-04 {
  max-width: 260px;
  width: 260px;
}
}

@media (max-width: 991px) {
.table-prices .col-02,
.table-prices .col-03,
.table-prices .col-04 {
  max-width: 150px;
  width: 150px;
}
}

@media (max-width: 767px) {
.table-prices .col-02,
.table-prices .col-03,
.table-prices .col-04 {
  max-width: 260px;
  width: 260px;
}
}

.icon-benefits {
  width: 34px;
  height: 34px;
}

@media (max-width: 991px) {
.icon-benefits {
  width: 28px;
  height: 28px;
}
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/

.accordion {
  --bs-accordion-border-radius: 12px;
}

.accordion-button {
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
}

.accordion-button:not(.collapsed) {
    color: var(--black-color);
    background: none;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header-fullscreen {
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #000;
  padding-top: var(--height-navigation);
}
.header-normal {
  padding-top: var(--height-navigation);
  position: relative;
  background-color: #000;
}
.header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.header-carousel,
.header-carousel .carousel-inner,
.header-carousel .carousel-item {
  position: absolute;
  inset: 0;
}

.header-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.header-carousel {
  z-index: 1;
}

@media (max-width: 991px) {
.header-fullscreen {
  min-height: 100%;
  display: block;
  background-color: var(--light-color);
  padding-bottom: 120px;
}
.header-carousel,
.header-carousel .carousel-inner,
.header-carousel .carousel-item {
  position: relative;
  inset: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.header-bg {
  position: relative;
}
}

@media (min-width: 992px) {
.text-lg-white {
  color: white;
}
}

/*--------------------------------------------------------------
# Galerie News
--------------------------------------------------------------*/

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.666%; /* 3:2 Aspect Ratio */
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.1);
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* 50 / 25 / 25 */
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  height: 520px;
}

/* gemeinsames Styling */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* links: grosses Bild */
.gallery-item-0 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* rechts oben links */
.gallery-item-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* rechts oben rechts */
.gallery-item-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

/* rechts unten links */
.gallery-item-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* rechts unten rechts (Overlay-Bild) */
.gallery-item-4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,.35);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 1 / 1;
  }

  .gallery-item-0 {
    grid-column: 1 / -1 !important;
    aspect-ratio: 2 / 1;
  }

  .gallery-item img {
    height: 100%;
  }
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

body.nav-open {
  overflow: hidden;
}

/* Base Navigation */
#navigation {
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  background: var(--white-color);
  z-index: 1002;
  border-bottom: 2px solid var(--light-color);
  padding: 0;
}

#navigation .navigation-main {
  padding-top: 20px;
  padding-bottom: 20px;
}

#navigation .navigation-top {
  padding-top: 10px;
  padding-bottom: 10px;
  color: white!important;
}

#navigation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  z-index: 1002;
  padding: 0;
}

.navbar-logo {
  height: 120px;
  margin-top: -46.4px;
}

.nav-link {
  color: var(--black-color);
  font-size: var(--font-size-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.nav-item.dropdown.active > .nav-link {
  color: var(--primary-color);
}

.navigation-top .navbar-nav .nav-link {
    color: white!important;
    opacity: 1;
}

.navigation-top .navbar-nav .nav-link:hover, .navigation-top .navbar-nav .nav-link.active {
    color: white!important;
    opacity: 0.5;
}

.navigation-top .navbar-nav.language-toggler .nav-link {
    color: white!important;
    opacity: 0.5;
}

.navigation-top .navbar-nav.language-toggler .nav-link:hover, .navigation-top .navbar-nav.language-toggler .nav-link.active {
    color: white!important;
    opacity: 1;
}

/* Burger Icon */
#burgerToggle {
  display: none;
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* Mobile Fullscreen Nav */
@media (max-width: 1199px) {
  #navigation .navigation-main {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .navbar-logo {
    height: 70px;
    margin-top: 0;
  }

  #burgerToggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
    border: none;
    background: transparent;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    width: 40px;
    z-index: 1003;
  }

  .burger-line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 4px auto;
    background-color: var(--black-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .burger-open .burger-line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(7px, 7px);
            transform: rotate(45deg) translate(7px, 7px);
  }
  .burger-open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-open .burger-line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
            transform: rotate(-45deg) translate(7px, -7px);
  }

  .navbar-collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    position: relative;
    top: 0;
    left: 0;
    height: calc(100dvh - var(--height-navigation));
    width: 100vw;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 60px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .navbar-nav.navbar-main {
    margin: auto auto auto 0;
  }

  .navbar-lg {
    margin-left: 0;
    margin-right: auto;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-menu .dropdown-item {
    padding: 0;
    text-align: left;
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item.active {
    color: var(--primary-color);
    background: none;
  }

  .navbar-nav .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: 10px;
  }

  .nav-link {
    font-size: var(--font-size-h3);
  }

  .small-navbar .nav-link {
    font-size: var(--font-size-base);
  }

  .small-navbar {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-navigation li .btn-link,
.footer-navigation li {
  text-decoration: none!important;
  font-size: var(--font-size-base);
}

.footer-navigation li ul li {
  font-size: var(--font-size-small);
}

.footer-copy {
  font-size: var(--font-size-tiny);
}

.footer-copy a {
  color: var(--black-color)!important;
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

#popupToast {
  background: var(--white-color);
  color: var(--text-color);
  min-width: 320px;
  max-width: 400px;
  border-radius: 0;
        -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 414px) {
#popupToast {
  min-width: calc(100vw - 30px);
  max-width: calc(100vw - 30px);
}
}

#popupToast h5 {
  font-size: var(--font-size-base);
}

#popupToast .small {
  font-size: var(--font-size-small);
}

#popupToast .tiny {
  font-size: var(--font-size-tiny);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

    .cookie-consent-banner {
        display: none;
        border-radius: 12px;
        bottom: 1rem;
        left: 1rem;
        position: fixed;
        padding: 1rem;
        width: 300px;
        text-align: left;
        max-height: 85%;
        overflow-y: auto;
        max-width: calc(100% - 40px);
        z-index: 997;
        opacity: 1;
        font-size: var(--font-size-tiny);
        -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
        color: var(--text-color);
        background-color: #ffffff;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }

    .cookie-consent-options label {
        margin: 0 10px;
        font-size: 14px;
    }

    .cookie-consent-options input {
        margin-right: 5px;
    }

    @media (max-width: 414px) {
        .cookie-consent-banner {
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            border-radius: 0;
            max-width: 100%;
            background-color: #ffffff;
            text-align: center;
        }
    }

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
  z-index: 5000;
}

.tox-form__group--stretched .tox-label {
  display: none!important;
}

.tox-form__group {
  margin-bottom: 10px!important;
}