@charset "UTF-8";
.accordion {
  width: 90%;
  max-width: 920px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #fff;
  color: #666;
  margin: 1.3rem 0;
  border: none !important;
  border-radius: 28px !important;
}
.accordion-item:first-of-type {
  border-top-left-radius: 28px !important;
  border-top-right-radius: 28px !important;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 28px !important;
  border-bottom-left-radius: 28px !important;
}
.accordion-item-header {
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  border: none;
}
.accordion-item-header::after {
  content: "+";
  font-size: 1.8rem;
  position: absolute;
  right: 1rem;
  color: #B25296;
  background-color: #F6ECF3;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  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;
}
.accordion-item-header.active::after {
  content: "–";
  padding-bottom: 6px;
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1.5rem;
  line-height: 1.5rem;
  border-top: 1px solid #999;
}

.custom-hotspot-container {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
}

.hotspot-inhalt-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.hotspot-item {
  position: absolute;
  left: clamp(0%, var(--hotspot-x, 20) * 1%, 100%);
  top: clamp(0%, var(--hotspot-y, 20) * 1%, 100%);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 20;
}
@media (max-width: 576.98px) {
  .hotspot-item {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    pointer-events: none;
  }
  .hotspot-item .hotspot-trigger {
    position: absolute !important;
    left: clamp(0%, var(--hotspot-x, 20) * 1%, 100%) !important;
    top: clamp(0%, var(--hotspot-y, 20) * 1%, 100%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
        -ms-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    pointer-events: auto;
  }
}
.hotspot-item:has(.is-visible) {
  z-index: 9999 !important;
}

.hotspot-trigger {
  position: relative;
  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;
  width: calc(var(--trigger-size, 50) * 1px);
  height: calc(var(--trigger-size, 50) * 1px);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: visible;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.hotspot-trigger .trigger-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  max-width: 85%;
  white-space: normal;
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  text-align: center;
  font-size: calc(var(--label-size, 14) * 1px);
  color: var(--label-color, #000000);
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  pointer-events: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.hotspot-trigger:hover .trigger-text {
  color: var(--label-hover-color, #999999) !important;
}
.hotspot-trigger:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.hotspot-trigger:hover .trigger-icon-normal {
  opacity: 0;
}
.hotspot-trigger:hover .trigger-icon-hover {
  opacity: 1;
}
.hotspot-trigger img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}
.hotspot-trigger .trigger-icon-normal {
  opacity: 1;
  z-index: 1;
}
.hotspot-trigger .trigger-icon-hover {
  opacity: 0;
  z-index: 2;
}

.hotspot-modal {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: calc(100% + 20px);
  -webkit-transform: translateX(-50%) translateY(-10px) scale(0.95);
      -ms-transform: translateX(-50%) translateY(-10px) scale(0.95);
          transform: translateX(-50%) translateY(-10px) scale(0.95);
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  width: 90vw;
  max-width: 320px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .hotspot-modal {
    width: 700px;
    max-width: 700px;
  }
}
@media (max-width: 576.98px) {
  .hotspot-modal {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) scale(0.9) !important;
        -ms-transform: translate(-50%, -50%) scale(0.9) !important;
            transform: translate(-50%, -50%) scale(0.9) !important;
    width: 85% !important;
    max-width: 380px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto;
  }
}
.hotspot-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(-50%) translateY(0) scale(1);
      -ms-transform: translateX(-50%) translateY(0) scale(1);
          transform: translateX(-50%) translateY(0) scale(1);
}
@media (max-width: 576.98px) {
  .hotspot-modal.is-visible {
    -webkit-transform: translate(-50%, -50%) scale(1) !important;
        -ms-transform: translate(-50%, -50%) scale(1) !important;
            transform: translate(-50%, -50%) scale(1) !important;
  }
}
.hotspot-modal .modal-content {
  background: transparent;
  border: none;
  padding: 3.5rem 2rem 2rem 2rem;
  width: 100% !important;
  height: auto;
  position: relative;
  display: block;
}
@media (max-width: 576.98px) {
  .hotspot-modal .modal-content {
    padding: 3rem 1.5rem 2.5rem 1.5rem;
    max-height: 85vh;
    overflow-y: auto;
  }
}
.hotspot-modal .modal-inner-provider {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}
.hotspot-modal .modal-inner-provider h1,
.hotspot-modal .modal-inner-provider h2,
.hotspot-modal .modal-inner-provider h3,
.hotspot-modal .modal-inner-provider h4,
.hotspot-modal .modal-inner-provider h5,
.hotspot-modal .modal-inner-provider h6,
.hotspot-modal .modal-inner-provider p,
.hotspot-modal .modal-inner-provider div,
.hotspot-modal .modal-inner-provider span {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin-top: 0;
  line-height: 1.5 !important;
}
.hotspot-modal .modal-inner-provider .wp-block-buttons {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: auto !important;
  line-height: normal !important;
}
.hotspot-modal .modal-inner-provider .wp-block-button__link {
  width: auto !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.hotspot-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
@media (max-width: 576.98px) {
  .hotspot-modal .modal-close {
    /* Das X nach innen versetzen wie im Wunschbild */
    top: 15px !important;
    right: 15px !important;
  }
}
.hotspot-modal .modal-close {
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 2px solid #B25296;
  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;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  color: #B25296;
  line-height: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1010;
  padding: 0;
}
.hotspot-modal .modal-close:hover {
  background-color: #B25296;
  color: #ffffff;
  -webkit-transform: rotate(90deg) scale(1.1);
      -ms-transform: rotate(90deg) scale(1.1);
          transform: rotate(90deg) scale(1.1);
}
.hotspot-modal .modal-close:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(178, 82, 150, 0.3);
          box-shadow: 0 0 0 3px rgba(178, 82, 150, 0.3);
}

.slider-wrapper {
  padding: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .slider-wrapper {
    padding: 0 80px 60px;
  }
}
.slider-wrapper .carousel {
  max-width: 800px;
  width: 100%;
  position: relative;
}
.slider-wrapper .carousel .carousel-inner {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
}
.slider-wrapper .carousel .carousel-inner .carousel-item {
  height: 100%;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  position: relative;
}
.slider-wrapper .carousel .carousel-inner .carousel-item .slide-link {
  display: block;
  height: 100%;
  outline: none !important;
}
.slider-wrapper .carousel .carousel-inner .carousel-item .slide-link::after {
  z-index: 3 !important;
}
.slider-wrapper .carousel .carousel-inner .carousel-item .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 16px;
  z-index: 1;
}
.slider-wrapper .carousel .carousel-inner .carousel-item .carousel-caption {
  z-index: 2;
}
.slider-wrapper .carousel .carousel-inner .carousel-item:hover .fake-btn {
  background-color: rgb(144.628, 64.372, 121.22);
}
.slider-wrapper .carousel .custom-control {
  display: none;
  width: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .slider-wrapper .carousel .custom-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.slider-wrapper .carousel .custom-control:hover, .slider-wrapper .carousel .custom-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  opacity: 0.6;
}
.slider-wrapper .carousel .custom-control .slider-nav-icon {
  width: 40px;
  height: auto;
}
.slider-wrapper .carousel .custom-control.carousel-control-prev {
  left: -60px;
}
.slider-wrapper .carousel .custom-control.carousel-control-next {
  right: -60px;
}
.slider-wrapper .carousel .carousel-indicators.custom-indicators {
  bottom: -50px;
  margin: 0;
}
.slider-wrapper .carousel .carousel-indicators.custom-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #EFDBE9 !important;
  border: none !important;
  margin: 0 6px !important;
  opacity: 1 !important;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.slider-wrapper .carousel .carousel-indicators.custom-indicators button.active {
  background-color: #B25296 !important;
}
.slider-wrapper .fake-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #B25296;
  color: #ffffff;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

body.modal-open .modal-backdrop.show {
  opacity: 0.15 !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.custom-modal .modal-content {
  position: relative;
  border-radius: 2rem;
  border: none;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .custom-modal .modal-content {
    padding: 1.5rem 0 0 0;
    border-radius: 1.5rem;
  }
}
.custom-modal .btn-custom-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1070;
  border: none;
  background: transparent;
  color: #8a3f8b;
  padding: 0;
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  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;
}
.custom-modal .btn-custom-close .icon-wrapper {
  border: 2px solid #8a3f8b;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  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;
  font-size: 1.5rem;
  line-height: 1;
  background-color: white;
}
.custom-modal .btn-custom-close:hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.custom-modal .btn-custom-close:hover .icon-wrapper {
  background-color: #8a3f8b;
  color: white;
}
.custom-modal .btn-custom-close:focus {
  outline: none;
}

.wechsel-sektion {
  display: none;
}

.wechsel-sektion.aktiv {
  display: block;
}

/* Basis-Stil für die Auslöser (Nicht aktiv = weiss) */
#ausloeser-a, #ausloeser-b {
  cursor: pointer;
  background-color: #fff;
  color: #B25296; /* Hier fehlte das Semikolon */
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* Optional: Macht den Farbwechsel schön weich */
}

/* Aktiver Zustand für die Auslöser (Aktiv = Violett) */
#ausloeser-a.ausloeser-aktiv,
#ausloeser-b.ausloeser-aktiv {
  background-color: #B25296;
  color: #ffffff;
}

/* Hover Zustand für BEIDE Auslöser (Hover = Violett) */
#ausloeser-a:hover,
#ausloeser-b:hover {
  background-color: #B25296;
  color: #ffffff;
}