@font-face { font-family: Inter; src: url('Inter/Inter-VariableFont_slnt,wght.ttf'); } 
@font-face { font-family: Lobster; src: url('Lobster/Lobster-Regular.ttf'); } 
@font-face { font-family: Hurricane; src: url('Hurricane/Hurricane-Regular.ttf'); } 
@font-face { font-family: Kalam; src: url('Kalam/Kalam-Regular.ttf'); } 


*{
	padding: 0;
	margin: 0 ;
  font-family: 'Inter';
}


html {
    scroll-behavior: smooth;
}


/* HERO */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
  display: block;
  width: 80%;
    background: rgba(255,255,255,0.85);
    padding: 40px 60px;
    border-radius: 40px;
    text-align: center;
    max-width: 700px;
}

.hero h1 {
    font-family: 'Inter', serif;
    font-size: 5vh;
    letter-spacing: 2px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* SECTION FLOW */
.section {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-family: 'Inter', serif;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
    width: 94%;
  margin-left: 3%;
}

/* WLAN BLOCK */
.wlan {
    background: #eaeaea;
    text-align: center;
    padding: 100px 20px;
}

.wlan h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.wlan-box {
    font-size: 18px;
    line-height: 1.8;
}

.highlight {
    font-size: 22px;
    font-weight: 500;
}

/* LISTEN */
.list {
    line-height: 2;
    font-size: 20px;
}

/* HAUSREGELN FLOW */
.rules {
    background: white;
    padding: 80px 20px;
}

.rule-item {
    margin-bottom: 25px;
}

/* KONTAKT */
.contact {
    background: #f1f1f1;
    text-align: center;
    padding: 65px 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero {
    height: 50vh;
}

    .hero-overlay {
        padding: 20px;
    }
}










/* Wrapper */
.intro-wrapper {
  padding: 60px 20px;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
}

/* Container */
.intro-container {
  max-width: 800px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Titel */
.intro-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

/* Text */
.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .intro-container {
    padding: 25px;
  }

  .intro-title {
    font-size: 24px;
  }

  .intro-text {
    font-size: 14px;
  }
}






/* Wrapper */
.x-cards {
  max-width: 900px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}

/* Card Basis */
.x-card {
  position: relative;
  border: 2px solid #000;
  padding: 30px 25px 25px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 15px;
}

/* Header (kleine Box oben) */
.x-card__header {
  position: relative;
  background: #fff;
  font-weight: bold;
}

/* Body */
.x-card__body {
  padding: 0px;
  margin-top:1vh;
}

/* LEFT Layout */
.x-card--left .x-card__header {
  text-align: left;
}

/* RIGHT Layout */
.x-card--right .x-card__header {
  text-align: right;
}

/* Hover Effekt ✨ */
.x-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s;
}

.x-card:hover::before {
  opacity: 1;
}

.x-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Extra Hover für inneren Bereich */
.x-card:hover .x-card__body {
  border-color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .x-card__header {
    left: 0px !important;
    right: auto !important;
  }
}








/* Karte */
.wifi-card {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

/* Bildbereich */
.wifi-card__image {
  width: 40%;
}

.wifi-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contentbereich */
.wifi-card__content {
  width: 60%;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Icon */
.wifi-card__icon {
  font-size: 40px;
}

/* Textbereich */
.wifi-card__text {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  margin-right: auto;
}

/* WIFI vertikal */
.wifi-card__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 3px;
  font-weight: bold;
  color: #7a5c3e;
  font-size: 5vh;
}

/* Zugangsdaten */
.wifi-card__credentials span {
  display: block;
  font-size: 16px;
  color: #777;
}

.wifi-card__credentials strong {
  font-size: 22px;
  color: #000;
}

.wifi-splitter{
  position: relative;
  width: 90%;
  margin-left: 5%;
  height: 2px;
  background-color: #333;
  margin-top:4vh;
}

/* Responsive */
@media (max-width: 768px) {
  .wifi-card {
    flex-direction: column;
  }

  .wifi-card__image{
    display: none;
  }

  .wifi-card__image,
  .wifi-card__content {
    width: 100%;
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .wifi-card__content {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .wifi-card__text {
    flex-direction: column;
    align-items: flex-start;

  }

  .wifi-card__label {
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}






.headline-h2 {
    font-family: 'Inter', serif;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
    width: 94%;
  margin-left: 3%;
}

.rules2 {
    background: white;
    padding: 20px;
}

/* Wrapper */
.x-map-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 10px auto;
  padding: 0px;
}

/* Karte */
#x-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#x-map-2 {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#x-map-3 {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  #x-map {
    height: 300px;
  }
  #x-map-2 {
    height: 300px;
  }
  #x-map-3 {
    height: 300px;
  }
}










/* HERO */
.hero-blog {
  position: relative;
  background-image: url("erneut-buchen.webp"); /* HIER BILD ERSETZEN */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all .7s ease;
  padding-top: 12vh;
  padding-bottom: 4vh;
}


/* leichte helle Fläche für bessere Lesbarkeit */
.hero-overlay-blog {
  position: absolute;
  inset: 0;

}

/* CONTENT */
.hero-content-blog {
  position: relative;
  max-width: 420px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  font-family: 'Inter';
  margin-left: 20vh;
}

.hero-content-blog h5 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-content-blog p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

/* BUTTON */
.btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: #0b6a63;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-blog:hover {
  background: #095b55;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-blog {
    padding: 1.5rem;
    min-height: 50vh;
  }

  .hero-content-blog {
    max-width: 100%;
    padding: 2rem;
    margin-left: 0vh;
  }

  .hero-content-blog h5 {
    font-size: 2rem;
  }

  #headline_top{
    display: none;
  }

}

/* RESPONSIVE */
@media (max-width: 1450px) {
.hero-content-blog {
  margin-left: 10vh;
}
}
@media (max-width: 1250px) {
.hero-content-blog {
  margin-left: 5vh;
}
}





/* Wrapper */
.cf-wrapper {
  padding: 40px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}

/* Container */
.cf-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Title */
.cf-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #222;
}

/* Form */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row (Email + Phone) */
.cf-row {
  display: flex;
  gap: 15px;
}

.cf-row .cf-group {
  flex: 1;
}

/* Labels */
.cf-label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
  color: #4b4b4b;
}

/* Inputs */
.cf-input,
.cf-select,
.cf-textarea {
  width: 95%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 16px;
  transition: all 0.2s ease;
}

/* Focus Effekt */
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #333;
  background: #fff;
}

/* Textarea */
.cf-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.cf-button {
  margin-top: 10px;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #2c2c2c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf-button:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .cf-row {
    flex-direction: column;
  }

  .cf-container {
    padding: 25px;
  }

  .cf-title {
    font-size: 24px;
  }
}










/* Wrapper */

/* Container */
.box-container {
  display: flex;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin-top:3vh;
}

/* Boxen */
.box-item {
  flex: 1;
  height: auto;
  background: transparent;
  border-radius: 8px;
  padding:10px;
}

/* Responsive */
@media (max-width: 700px) {
  .box-container {
    flex-direction: column;
  }
  #bx_item_2{
    margin-top:3vh;
  }
}







/* Wrapper (centered + background blur effect feel) */


/* Card */
.nxr-rating-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding-top: 60px;
  padding-bottom: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Top badge circle */
.nxr-rating-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner star circle */
.nxr-rating-star {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #ffcc00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(255,140,0,0.4);
}

.nxr-rating-content{
  position: relative;
  width: 90%;
  margin-left:5%;
}

/* Text */
.nxr-rating-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.nxr-rating-text {
  font-size: 17px;
  color: #6e6e73;
  margin-bottom: 22px;
}

/* Button */
.nxr-rating-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nxr-rating-button:hover {
  background: #222;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .nxr-rating-card {
    padding-top: 60px;
  padding-bottom: 30px;
  }

  .nxr-rating-title {
    font-size: 18px;
  }

  .nxr-rating-text {
    font-size: 14px;
  }
}















/* Wrapper */
.zeta-booking-wrapper {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top:0;
}

/* Card */
.zeta-booking-card {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Title */
.zeta-booking-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #333;
}

/* Grid */
.zeta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Field */
.zeta-field-group {
  display: flex;
  flex-direction: column;
}

.zeta-field-group.full {
  grid-column: span 2;
}

/* Labels */
.zeta-field-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.zeta-field-group label span {
  color: #e63946;
}

/* Inputs */
.zeta-field-group input,
.zeta-field-group select {
  padding: 11px;
  border-radius: 8px;
  border: 1px solid #ccd6dd;
  background: #eef3f7;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.zeta-field-group input:focus,
.zeta-field-group select:focus {
  border-color: #3a86ff;
  background: #fff;
}

/* Small text */
.zeta-field-group small {
  margin-top: 5px;
  font-size: 12px;
  color: #777;
}

/* Checkbox */
.zeta-field-group.checkbox {
  align-items: flex-start;
}

.zeta-field-group.checkbox input {
  margin-right: 8px;
}

/* Button */
.zeta-booking-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1b4d63;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.zeta-booking-btn:hover {
  background: #163d4f;
}

/* Responsive */
@media (max-width: 600px) {
  .zeta-form-grid {
    grid-template-columns: 1fr;
  }

  .zeta-field-group.full {
    grid-column: span 1;
  }

  .zeta-booking-card {
    padding: 20px 15px;
  }
}









/* ===== Chatbot Text ===== */
 #chatbot217 {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 340px;
      height: 520px;
      font-family: Arial, sans-serif;
      box-shadow: 0 8px 25px rgba(0,0,0,.25);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      z-index: 99999;
    }

    #chatbot217.minimized {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      cursor: pointer;
    }

    #chatbot217.minimized #chat-messages-217,
    #chatbot217.minimized .quick-questions-217,
    #chatbot217.minimized #chat-input-217,
    #chatbot217.minimized .chat-actions-217,
    #chatbot217.minimized .chat-title-text-217 {
      display: none;
    }

    #chatbot217.minimized #chat-header217 {
      height: 100%;
      padding: 0;
      justify-content: center;
    }

    #chatbot217.minimized .chat-icon-217 {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }

    #chat-header217 {
      background: #2aa879;
      color: #fff;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .chat-title-217 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
}

.chat-actions-217 button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

#chat-messages-217 {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f4f7f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-questions-217 {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.quick-questions-217 strong{
  align-items: center;
}



    .chat-icon-217 {
      background: #fff;
      color: #2aa879;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quick-questions-btn-217 {
      font-size: 13px;
      padding: 6px 10px;
      border-radius: 16px;
      border: 1px solid #2aa879;
      background: #fff;
      color: #000;
      cursor: pointer;
    }
    .quick-questions-btn-217:hover {
      background: #2aa879;
      color: #fff;
    }

    .user-message-217 {
      align-self: flex-end;
      background: #2aa879;
      color: white;
      border-top-right-radius: 4px;
    }

    /* Links im Bot-Text */
    .bot-message-217 a {
      color: #2aa879;
      text-decoration: underline;
    }

    #chat-input-217 button {
      border: none;
      background: #2aa879;
      color: white;
      padding: 0 16px;
      cursor: pointer;
      font-size: 18px;
    }



    
.typing-217 {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.typing-217 span {
  width: 6px;
  height: 6px;
  margin: 0 2px;
  background: #555;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-217 span:nth-child(1) { animation-delay: 0s; }
.typing-217 span:nth-child(2) { animation-delay: 0.2s; }
.typing-217 span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}


.message-217 {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.3;
}

.bot-message-217 {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 4px;
}


.message-217 strong {
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
  opacity: 0.7;
}








.ks-faq-container {
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.ks-faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.ks-faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  color: #2b2b2b;
}

.ks-faq-question:hover {
  background: #f1f1f1;
}

.ks-faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.ks-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  font-size: 17px;
}

.ks-faq-answer p {
  margin: 15px 0;
  color: #555;
}

/* Active State */
.ks-faq-item.active .ks-faq-answer {
  max-height: 200px;
}

.ks-faq-item.active .ks-faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .ks-faq-question {
    font-size: 17px;
    padding: 12px 15px;
  }

  .ks-faq-answer p {
    font-size: 17px;
  }
}










/* Hintergrund Overlay */
.popup-overlay-anfrage {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
    font-family: 'Inter';
}

/* Popup Fenster */
.popup-box-anfrage {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: scaleIn 0.2s ease;
}

/* Schließen Button */
.popup-close-anfrage {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    border: none;
    background: none;
}

.popup-headline-anfrage{
  position: relative;
  text-align: center;
  font-size:1.5em;
  font-weight: 700;
}

.popup-p-anfrage{
  position: relative;
  font-size:1em;
  margin-top:2vh;
}

.popup-img-anfrage{
  position: relative;
  display: block; 
  width: 80%;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* Animationen */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}





.input-group-anfrage-checkbox {
    width: 90%;
    margin-left: auto;
    margin-right : auto;
    font-family: 'Inter';
}

.checkbox-container-anfrage {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    cursor: pointer;
  }

  .checkbox-container-anfrage input {
    display: none;
  }

  .custom-checkbox-anfrage {
    width: 17px;
    height: 17px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .custom-checkbox-anfrage::after {
    content: "✓";
    font-size: 14px;
    color: white;
    display: none;
  }

  .checkbox-container-anfrage input:checked + .custom-checkbox-anfrage {
    background-color: #2d8cff;
    border-color: #2d8cff;
  }

  .checkbox-container-anfrage input:checked + .custom-checkbox-anfrage::after {
    display: block;
  }

  .custom-checkbox-anfrage-link{
    position: relative;
    text-decoration: none;
    color:#a60707;
    transition: 0.5s;
  }
  .custom-checkbox-anfrage-link:hover{
    color:#0764a6;
  }

  /* Responsive Anpassung */
  @media (max-width: 480px) {
    .checkbox-container-anfrage {
      gap: 8px;
    }

    .custom-checkbox-anfrage {
      width: 18px;
      height: 18px;
    }

    .custom-checkbox-anfrage::after {
      font-size: 12px;
    }
  }





  /* ===== Ende Design 1 ===== */


    /* ===== Start Design 2 ===== */


    
.card {
  width: 100%;
  margin: 0 auto;
  background: #f4f4f4;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Bildbereich */
.card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  align-items: center;
    justify-content: center;
  object-fit: cover;
  height: 70vh;
}
/* RESPONSIVE */
@media (max-width: 600px) {

    .card-image img {
      height: 50vh;
    }

}

.card-content h2{
  position: relative;
  text-align: center;
  margin-top:3vh;
  text-align: 'Inter';
  font-size: 4.5vh;
}

.card-content p{
  position: relative;
  text-align: center;
  margin-top:1vh;
  font-size: 25px;
  text-align: 'Inter';
}



.image-bg-color{
  position: relative;
  width: 100%;
  height: 2vh;
  background-color: #417aa2;
}



.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* SECTION FLOW */
.section {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-family: 'Inter', serif;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
  width: 94%;
  margin-left: 3%;
}






/* WLAN BLOCK */
.wlan {
    background: #417aa2;
    text-align: center;
    padding: 100px 20px;
}

.wlan h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.wlan-box {
    font-size: 18px;
    line-height: 1.8;
}

.highlight {
    font-size: 22px;
    font-weight: 500;
}

/* LISTEN */


/* HAUSREGELN FLOW */
.rules {
    background: white;
    padding: 80px 20px;
}

.rule-item {
    margin-bottom: 25px;
}

/* KONTAKT */
.contact {
    background: #f1f1f1;
    text-align: center;
    padding: 80px 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
}













.dream-wrapper {
  max-width: 1000px;
  width: 94%;
  margin-left: 3%;
  margin: 6vh auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Linke Seite */
.dream-left {
  flex: 1;
}

.dream-title {
  font-size: 30px;
  letter-spacing: 2px;
  color: #333;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Rechte Seite */
.dream-right {
  flex: 2;
}

.dream-text {
  font-size: 21px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .dream-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .dream-title {
    font-size: 24px;
  }

  .dream-text {
    font-size: 20px;
  }
}







.ksx-feature-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.ksx-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.ksx-feature-emoji {
  font-size: 28px;
  min-width: 50px;
  height: 50px;
  background: #d8d7d7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ksx-feature-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: 1px;
}

.ksx-feature-content p {
  margin: 0;
  color: #666;
  font-size: 18px;
  line-height: 1.5;
}

/* 🔥 Responsive */
@media (max-width: 600px) {
  .ksx-feature-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .ksx-feature-emoji {
    margin-bottom: 10px;
  }

  .card-content{
    margin-top: 5vh;
  }
}











/* Card */
.wfcard-card {
  background: #ffffff;
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
  margin-left: auto;
  margin-right: auto;
}

/* Icon */
.wfcard-icon {
  font-size: 40px;
  color: #777;
  margin-bottom: 10px;
}

/* Title */
.wfcard-title {
  font-size: 42px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* Divider */
.wfcard-divider {
  width: 1px;
  height: 40px;
  background: #ccc;
  margin: 20px auto;
}

/* Section */
.wfcard-section {
  margin-bottom: 20px;
}

/* Label */
.wfcard-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 5px;
}

/* Value */
.wfcard-value {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 480px) {
  .wfcard-card {
    padding: 25px 15px;
  }

  .wfcard-title {
    font-size: 34px;
  }

  .wfcard-icon {
    font-size: 32px;
  }
}







.headline-h2 {
    font-family: 'Inter', serif;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
    width: 94%;
  margin-left: 3%;
}

.rules2 {
    background: white;
    padding: 20px;
}

/* Wrapper */
.x-map-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 0px;
}

/* Karte */
#x-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  #x-map {
    height: 300px;
  }
}











/* Wrapper */
.cf-wrapper {
  padding: 40px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}

/* Container */
.cf-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Title */
.cf-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #222;
}

/* Form */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row (Email + Phone) */
.cf-row {
  display: flex;
  gap: 15px;
}

.cf-row .cf-group {
  flex: 1;
}

/* Labels */
.cf-label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
  color: #4b4b4b;
}

/* Inputs */
.cf-input,
.cf-select,
.cf-textarea {
  width: 95%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 16px;
  transition: all 0.2s ease;
}

/* Focus Effekt */
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #333;
  background: #fff;
}

/* Textarea */
.cf-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.cf-button {
  margin-top: 10px;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #2c2c2c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf-button:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .cf-row {
    flex-direction: column;
  }

  .cf-container {
    padding: 25px;
  }

  .cf-title {
    font-size: 24px;
  }
}










/* Wrapper */
.box-wrapper {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background: #f4f4f4;
}

/* Container */
.box-container {
  display: flex;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin-top:3vh;
}

/* Boxen */
.box-item {
  flex: 1;
  height: auto;
  background: transparent;
  border-radius: 8px;
  padding:10px;
}

/* Responsive */
@media (max-width: 700px) {
  .box-container {
    flex-direction: column;
  }
  #bx_item_2{
    margin-top:3vh;
  }
}







/* Wrapper (centered + background blur effect feel) */


/* Card */
.nxr-rating-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding-top: 60px;
  padding-bottom: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Top badge circle */
.nxr-rating-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner star circle */
.nxr-rating-star {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #ffcc00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(255,140,0,0.4);
}

.nxr-rating-content{
  position: relative;
  width: 90%;
  margin-left:5%;
}



/* Responsive tweaks */
@media (max-width: 480px) {
  .nxr-rating-card {
    padding-top: 60px;
  padding-bottom: 30px;
  }

  .nxr-rating-title {
    font-size: 18px;
  }

  .nxr-rating-text {
    font-size: 14px;
  }
}















/* Wrapper */
.zeta-booking-wrapper {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top:0;
}

/* Card */
.zeta-booking-card {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Title */
.zeta-booking-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #333;
}

/* Grid */
.zeta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Field */
.zeta-field-group {
  display: flex;
  flex-direction: column;
}

.zeta-field-group.full {
  grid-column: span 2;
}

/* Labels */
.zeta-field-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.zeta-field-group label span {
  color: #e63946;
}

/* Inputs */
.zeta-field-group input,
.zeta-field-group select {
  padding: 11px;
  border-radius: 8px;
  border: 1px solid #ccd6dd;
  background: #eef3f7;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.zeta-field-group input:focus,
.zeta-field-group select:focus {
  border-color: #3a86ff;
  background: #fff;
}

/* Small text */
.zeta-field-group small {
  margin-top: 5px;
  font-size: 12px;
  color: #777;
}

/* Checkbox */
.zeta-field-group.checkbox {
  align-items: flex-start;
}

.zeta-field-group.checkbox input {
  margin-right: 8px;
}

/* Button */
.zeta-booking-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1b4d63;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.zeta-booking-btn:hover {
  background: #163d4f;
}

/* Responsive */
@media (max-width: 600px) {
  .zeta-form-grid {
    grid-template-columns: 1fr;
  }

  .zeta-field-group.full {
    grid-column: span 1;
  }

  .zeta-booking-card {
    padding: 20px 15px;
  }
}









/* ===== Chatbot Text ===== */
 #chatbot217 {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 340px;
      height: 520px;
      font-family: Arial, sans-serif;
      box-shadow: 0 8px 25px rgba(0,0,0,.25);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      z-index: 99999;
    }

    #chatbot217.minimized {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      cursor: pointer;
    }

    #chatbot217.minimized #chat-messages-217,
    #chatbot217.minimized .quick-questions-217,
    #chatbot217.minimized #chat-input-217,
    #chatbot217.minimized .chat-actions-217,
    #chatbot217.minimized .chat-title-text-217 {
      display: none;
    }

    #chatbot217.minimized #chat-header217 {
      height: 100%;
      padding: 0;
      justify-content: center;
    }

    #chatbot217.minimized .chat-icon-217 {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }

    #chat-header217 {
      background: #2aa879;
      color: #fff;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .chat-title-217 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
}

.chat-actions-217 button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

#chat-messages-217 {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f4f7f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-questions-217 {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.quick-questions-217 strong{
  align-items: center;
}



    .chat-icon-217 {
      background: #fff;
      color: #2aa879;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quick-questions-btn-217 {
      font-size: 13px;
      padding: 6px 10px;
      border-radius: 16px;
      border: 1px solid #2aa879;
      background: #fff;
      color: #000;
      cursor: pointer;
    }
    .quick-questions-btn-217:hover {
      background: #2aa879;
      color: #fff;
    }

    .user-message-217 {
      align-self: flex-end;
      background: #2aa879;
      color: white;
      border-top-right-radius: 4px;
    }

    /* Links im Bot-Text */
    .bot-message-217 a {
      color: #2aa879;
      text-decoration: underline;
    }

    #chat-input-217 button {
      border: none;
      background: #2aa879;
      color: white;
      padding: 0 16px;
      cursor: pointer;
      font-size: 18px;
    }



    
.typing-217 {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.typing-217 span {
  width: 6px;
  height: 6px;
  margin: 0 2px;
  background: #555;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-217 span:nth-child(1) { animation-delay: 0s; }
.typing-217 span:nth-child(2) { animation-delay: 0.2s; }
.typing-217 span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}


.message-217 {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.3;
}

.bot-message-217 {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 4px;
}


.message-217 strong {
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
  opacity: 0.7;
}








.nxfaq-wrapper{
  max-width:900px;
  margin:40px auto;
}

.nxfaq-card{
  background:#ffffff;
  border-radius:18px;
  margin-bottom:18px;
  overflow:hidden;

  border:1px solid #ececec;

  box-shadow:
    0 8px 30px rgba(0,0,0,0.04);

  transition:0.3s;
}

.nxfaq-card:hover{
  transform:translateY(-2px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.08);
}

.nxfaq-title{
  padding:22px 25px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  font-size:20px;
  font-weight:600;

  color:#1e293b;

  background:#ffffff;

  transition:0.3s;
}

.nxfaq-title:hover{
  background:#f8fafc;
}

.nxfaq-plus{
  width:34px;
  height:34px;

  min-width:34px;

  border-radius:50%;

  background:#f1f5f9;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  font-weight:300;

  transition:0.35s;

  color:#0f172a;
}

.nxfaq-content{

  max-height:0;
  overflow:hidden;

  transition:
    max-height 0.45s ease,
    padding 0.35s ease;

  padding:0 25px;

  background:#fcfcfc;

  color:#475569;

  line-height:1.7;

  font-size:18px;
}

.nxfaq-open .nxfaq-content{

  max-height:800px;

  padding:
    0 25px 25px 25px;
    padding-top:1vh;
}

.nxfaq-open .nxfaq-plus{

  transform:rotate(45deg);

  background:#dbeafe;

  color:#2563eb;
}

.nxfaq-content p{
  margin-top:15px;
}

@media(max-width:768px){

  .nxfaq-title{

    padding:18px 18px;

    font-size:16px;
  }

  .nxfaq-content{

    font-size:15px;
  }

}






/* Hintergrund Overlay */
.popup-overlay-anfrage {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
    font-family: 'Inter';
}

/* Popup Fenster */
.popup-box-anfrage {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: scaleIn 0.2s ease;
}

/* Schließen Button */
.popup-close-anfrage {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    border: none;
    background: none;
}

.popup-headline-anfrage{
  position: relative;
  text-align: center;
  font-size:1.5em;
  font-weight: 700;
}

.popup-p-anfrage{
  position: relative;
  font-size:1em;
  margin-top:2vh;
}

.popup-img-anfrage{
  position: relative;
  display: block; 
  width: 80%;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* Animationen */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}





.input-group-anfrage-checkbox {
    width: 90%;
    margin-left: auto;
    margin-right : auto;
    font-family: 'Inter';
}

.checkbox-container-anfrage {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    cursor: pointer;
  }

  .checkbox-container-anfrage input {
    display: none;
  }

  .custom-checkbox-anfrage {
    width: 17px;
    height: 17px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .custom-checkbox-anfrage::after {
    content: "✓";
    font-size: 14px;
    color: white;
    display: none;
  }

  .checkbox-container-anfrage input:checked + .custom-checkbox-anfrage {
    background-color: #2d8cff;
    border-color: #2d8cff;
  }

  .checkbox-container-anfrage input:checked + .custom-checkbox-anfrage::after {
    display: block;
  }

  .custom-checkbox-anfrage-link{
    position: relative;
    text-decoration: none;
    color:#a60707;
    transition: 0.5s;
  }
  .custom-checkbox-anfrage-link:hover{
    color:#0764a6;
  }

  /* Responsive Anpassung */
  @media (max-width: 480px) {
    .checkbox-container-anfrage {
      gap: 8px;
    }

    .custom-checkbox-anfrage {
      width: 18px;
      height: 18px;
    }

    .custom-checkbox-anfrage::after {
      font-size: 12px;
    }
  }














  /* Wrapper */
.guestinfo-wrapper {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f7f9fc, #eef2f7);
  display: flex;
  justify-content: center;
}

/* Card */
.guestinfo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Title */
.guestinfo-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1a1a1a;
}

/* Grid Layout */
.guestinfo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: #e1e1e1;
  padding:20px;
  border-radius:20px;
}

/* Item */
.guestinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f9fbfd;
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guestinfo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Icon */
.guestinfo-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* Text */
.guestinfo-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 0;
}

.guestinfo-text {
  font-size: 17px;
  color: #222;
  margin: 3px 0 0;
}

/* Responsive */
@media (max-width: 600px) {
  .guestinfo-grid {
    grid-template-columns: 1fr;
  }

  .guestinfo-card {
    padding: 20px;
  }

  .guestinfo-title {
    font-size: 24px;
  }
}




  /* ===== Ende Design 2 ===== */


    /* ===== Start Design 3 ===== */


    
.hero2 {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 300px;
      background: url('fewo-test.webp') center/cover no-repeat;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 0px;
    }

    .card2 {
      position: relative;
      background: #ffffff;
      padding: 0px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      max-width: 800px;
      width: 90%;
      text-align: left;
      top:10vh;
      padding-top:2vh;
      padding-bottom:2vh;
    }

    .card2 h1 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: #333;
      width: 94%;
      margin-left: 3%;
    }

    .card2 p {
      font-size: 1rem;
      color: #666;
      line-height: 1.5;
      width: 94%;
      margin-left: 3%;
    }

    /* Responsive Anpassungen */
    @media (max-width: 768px) {
      .hero2 {
        height: 50vh;
      }


      .card2 h1 {
        font-size: 1.5rem;
      }

      .card2 p {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .hero2 {
        height: 45vh;
      }

      .card2 h1 {
        font-size: 1.3rem;
      }
    }


.card {
  width: 100%;
  margin: 0 auto;
  background: #f4f4f4;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Bildbereich */
.card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  align-items: center;
    justify-content: center;
  object-fit: cover;
  height: 70vh;
}
/* RESPONSIVE */
@media (max-width: 600px) {

    .card-image img {
      height: 50vh;
    }

}



.image-bg-color{
  position: relative;
  width: 100%;
  height: 2vh;
  background-color: #417aa2;
}



.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* SECTION FLOW */
.section {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-family: 'Kalam';
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
  width: 94%;
  margin-left: 3%;
}






/* WLAN BLOCK */
.wlan {
    background: #85955F;
    text-align: center;
    padding: 50px 20px;
}

.wlan h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.wlan-box {
    font-size: 18px;
    line-height: 1.8;
}

.highlight {
    font-size: 22px;
    font-weight: 500;
}

/* LISTEN */


/* HAUSREGELN FLOW */
.rules {
    background: white;
    padding: 80px 20px;
}

.rule-item {
    margin-bottom: 25px;
}

/* KONTAKT */
.contact {
    background: #f1f1f1;
    text-align: center;
    padding: 80px 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
}













.dream-wrapper {
  max-width: 1000px;
  width: 94%;
  margin-left: 3%;
  margin: 6vh auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Linke Seite */
.dream-left {
  flex: 1;
}


/* Rechte Seite */
.dream-right {
  flex: 2;
}




/* SECTION */
.ux-feature-section {
  padding: 40px 20px;
  background: #f5f5f5;
}

/* GRID → MAXIMAL 2 SPALTEN */
.ux-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* <-- FIX AUF 2 */
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* ITEM */
.ux-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* ICON */
.ux-feature-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

/* CONTENT */
.ux-feature-content {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.ux-feature-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #222;
}

/* TEXT */
.ux-feature-text {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* MOBILE → 1 SPALTE */
@media (max-width: 600px) {
  .ux-feature-grid {
    grid-template-columns: 1fr;
  }
}





/* Wrapper */
.wifiCard_container {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Card */
.wifiCard_card {
    width: 100%;
    max-width: 350px;
    background: #f5f5f5;
    border: 4px solid #c1c494;
    padding: 30px 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Company */
.wifiCard_company {
    font-weight: bold;
    color: #85955F;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.wifiCard_slogan {
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

/* Icon Circle */
.wifiCard_iconCircle {
    width: 150px;
    height: 150px;
    background: #85955F;
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WiFi Icon */
.wifiCard_wifiIcon {
    width: 70%;
}

/* Title */
.wifiCard_title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #85955F;
    margin-top: 10px;
}

/* Labels */
.wifiCard_label {
    margin-top: 20px;
    font-weight: bold;
    color: #000;
}

.wifiCard_value {
    font-style: italic;
    color: #333;
}

/* Responsive */
@media (max-width: 400px) {
    .wifiCard_card {
        padding: 20px 15px;
    }

    .wifiCard_iconCircle {
        width: 120px;
        height: 120px;
    }

    .wifiCard_title {
        font-size: 1.8rem;
    }
}




/* GRID (max 2 nebeneinander) */
.ux-contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.ux-contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

/* HOVER */
.ux-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* ICON */
.ux-contact-icon {
  font-size: 26px;
  background: #f1f3f7;
  padding: 10px;
  border-radius: 10px;
}

/* CONTENT */
.ux-contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* LABEL */
.ux-contact-label {
  font-size: 14px;
  color: #666;
}

/* VALUE */
.ux-contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* MOBILE */
@media (max-width: 600px) {
  .ux-contacts-grid {
    grid-template-columns: 1fr;
  }
}






.headline-h2 {
    font-family: 'Kalam';
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    width: 94%;
  margin-left: 3%;
}

.rules2 {
    background: white;
    padding: 20px;
}

/* Wrapper */
.x-map-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 0px;
}

/* Karte */
#x-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  #x-map {
    height: 300px;
  }
}











/* Wrapper */
.cf-wrapper {
  padding: 40px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}

/* Container */
.cf-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Title */
.cf-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #222;
}

/* Form */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row (Email + Phone) */
.cf-row {
  display: flex;
  gap: 15px;
}

.cf-row .cf-group {
  flex: 1;
}

/* Labels */
.cf-label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
  color: #4b4b4b;
}

/* Inputs */
.cf-input,
.cf-select,
.cf-textarea {
  width: 95%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 16px;
  transition: all 0.2s ease;
}

/* Focus Effekt */
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #333;
  background: #fff;
}

/* Textarea */
.cf-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.cf-button {
  margin-top: 10px;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #2c2c2c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top:2vh;
}

.cf-button:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .cf-row {
    flex-direction: column;
  }

  .cf-container {
    padding: 25px;
  }

  .cf-title {
    font-size: 24px;
  }
}










/* Wrapper */

/* Container */
.box-container {
  display: flex;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin-top:3vh;
}

/* Boxen */
.box-item {
  flex: 1;
  height: auto;
  background: transparent;
  border-radius: 8px;
  padding:10px;
}

/* Responsive */
@media (max-width: 700px) {
  .box-container {
    flex-direction: column;
  }
  #bx_item_2{
    margin-top:3vh;
  }
}







/* Wrapper (centered + background blur effect feel) */


/* Card */
.nxr-rating-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding-top: 60px;
  padding-bottom: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Top badge circle */
.nxr-rating-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner star circle */
.nxr-rating-star {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #ffcc00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(255,140,0,0.4);
}

.nxr-rating-content{
  position: relative;
  width: 90%;
  margin-left:5%;
}



/* Responsive tweaks */
@media (max-width: 480px) {
  .nxr-rating-card {
    padding-top: 60px;
  padding-bottom: 30px;
  }

  .nxr-rating-title {
    font-size: 18px;
  }

  .nxr-rating-text {
    font-size: 16px;
  }
}















/* Wrapper */
.zeta-booking-wrapper {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top:0;
}

/* Card */
.zeta-booking-card {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Title */
.zeta-booking-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #333;
}

/* Grid */
.zeta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Field */
.zeta-field-group {
  display: flex;
  flex-direction: column;
}

.zeta-field-group.full {
  grid-column: span 2;
}

/* Labels */
.zeta-field-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.zeta-field-group label span {
  color: #e63946;
}

/* Inputs */
.zeta-field-group input,
.zeta-field-group select {
  padding: 11px;
  border-radius: 8px;
  border: 1px solid #ccd6dd;
  background: #eef3f7;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.zeta-field-group input:focus,
.zeta-field-group select:focus {
  border-color: #3a86ff;
  background: #fff;
}

/* Small text */
.zeta-field-group small {
  margin-top: 5px;
  font-size: 12px;
  color: #777;
}

/* Checkbox */
.zeta-field-group.checkbox {
  align-items: flex-start;
}

.zeta-field-group.checkbox input {
  margin-right: 8px;
}

/* Button */
.zeta-booking-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1b4d63;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.zeta-booking-btn:hover {
  background: #163d4f;
}

/* Responsive */
@media (max-width: 600px) {
  .zeta-form-grid {
    grid-template-columns: 1fr;
  }

  .zeta-field-group.full {
    grid-column: span 1;
  }

  .zeta-booking-card {
    padding: 20px 15px;
  }
}









/* ===== Chatbot Text ===== */
 #chatbot217 {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 340px;
      height: 520px;
      font-family: Arial, sans-serif;
      box-shadow: 0 8px 25px rgba(0,0,0,.25);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      z-index: 99999;
    }

    #chatbot217.minimized {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      cursor: pointer;
    }

    #chatbot217.minimized #chat-messages-217,
    #chatbot217.minimized .quick-questions-217,
    #chatbot217.minimized #chat-input-217,
    #chatbot217.minimized .chat-actions-217,
    #chatbot217.minimized .chat-title-text-217 {
      display: none;
    }

    #chatbot217.minimized #chat-header217 {
      height: 100%;
      padding: 0;
      justify-content: center;
    }

    #chatbot217.minimized .chat-icon-217 {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }

    #chat-header217 {
      background: #2aa879;
      color: #fff;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .chat-title-217 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
}

.chat-actions-217 button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

#chat-messages-217 {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f4f7f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-questions-217 {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.quick-questions-217 strong{
  align-items: center;
}



    .chat-icon-217 {
      background: #fff;
      color: #2aa879;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quick-questions-btn-217 {
      font-size: 13px;
      padding: 6px 10px;
      border-radius: 16px;
      border: 1px solid #2aa879;
      background: #fff;
      color: #000;
      cursor: pointer;
    }
    .quick-questions-btn-217:hover {
      background: #2aa879;
      color: #fff;
    }

    .user-message-217 {
      align-self: flex-end;
      background: #2aa879;
      color: white;
      border-top-right-radius: 4px;
    }

    /* Links im Bot-Text */
    .bot-message-217 a {
      color: #2aa879;
      text-decoration: underline;
    }

    #chat-input-217 button {
      border: none;
      background: #2aa879;
      color: white;
      padding: 0 16px;
      cursor: pointer;
      font-size: 18px;
    }



    
.typing-217 {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.typing-217 span {
  width: 6px;
  height: 6px;
  margin: 0 2px;
  background: #555;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-217 span:nth-child(1) { animation-delay: 0s; }
.typing-217 span:nth-child(2) { animation-delay: 0.2s; }
.typing-217 span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}


.message-217 {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.3;
}

.bot-message-217 {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 4px;
}


.message-217 strong {
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
  opacity: 0.7;
}








.ks-faq-container {
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.ks-faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.ks-faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  color: #2b2b2b;
}

.ks-faq-question:hover {
  background: #f1f1f1;
}

.ks-faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.ks-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background-color: #f2f2f2;
  font-size: 17px;
}

.ks-faq-answer p {
  margin: 15px 0;
  color: #555;
}

/* Active State */
.ks-faq-item.active .ks-faq-answer {
  max-height: 200px;
}

.ks-faq-item.active .ks-faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .ks-faq-question {
    font-size: 17px;
    padding: 12px 15px;
  }

  .ks-faq-answer p {
    font-size: 17px;
  }
}










/* Hintergrund Overlay */
.popup-overlay-anfrage {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
    font-family: 'Inter';
}

/* Popup Fenster */
.popup-box-anfrage {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: scaleIn 0.2s ease;
}

/* Schließen Button */
.popup-close-anfrage {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    border: none;
    background: none;
}

.popup-headline-anfrage{
  position: relative;
  text-align: center;
  font-size:1.5em;
  font-weight: 700;
}

.popup-p-anfrage{
  position: relative;
  font-size:1em;
  margin-top:2vh;
}

.popup-img-anfrage{
  position: relative;
  display: block; 
  width: 80%;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* Animationen */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}





.input-group-anfrage-checkbox {
    width: 90%;
    margin-left: auto;
    margin-right : auto;
    font-family: 'Inter';
}

.checkbox-container-anfrage {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    cursor: pointer;
  }

  .checkbox-container-anfrage input {
    display: none;
  }

  .custom-checkbox-anfrage {
    width: 17px;
    height: 17px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .custom-checkbox-anfrage::after {
    content: "✓";
    font-size: 14px;
    color: white;
    display: none;
  }

  .checkbox-container-anfrage input:checked + .custom-checkbox-anfrage {
    background-color: #2d8cff;
    border-color: #2d8cff;
  }

  .checkbox-container-anfrage input:checked + .custom-checkbox-anfrage::after {
    display: block;
  }

  .custom-checkbox-anfrage-link{
    position: relative;
    text-decoration: none;
    color:#a60707;
    transition: 0.5s;
  }
  .custom-checkbox-anfrage-link:hover{
    color:#0764a6;
  }

  /* Responsive Anpassung */
  @media (max-width: 480px) {
    .checkbox-container-anfrage {
      gap: 8px;
    }

    .custom-checkbox-anfrage {
      width: 18px;
      height: 18px;
    }

    .custom-checkbox-anfrage::after {
      font-size: 12px;
    }
  }














  /* Wrapper */
.guestinfo-wrapper {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f7f9fc, #eef2f7);
  display: flex;
  justify-content: center;
}

/* Card */
.guestinfo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Title */
.guestinfo-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1a1a1a;
}




  .loft-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .loft-info-card {
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .loft-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  /* Farben */
  .loft-info-card:nth-child(odd) {
    background: #85955F;
  }

  .loft-info-card:nth-child(even) {
    background: #c1c494;
  }

  .loft-info-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .loft-info-title {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 8px;
  }

  .loft-info-content {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
  }

  /* Tablet */
  @media (max-width: 900px) {
    .loft-info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media (max-width: 600px) {
    .loft-info-grid {
      grid-template-columns: 1fr;
    }
  }













  
/* Hintergrund Overlay */
.popup-overlay-anfrage2 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
    font-family: 'Inter';
}

/* Popup Fenster */
.popup-box-anfrage2 {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: scaleIn 0.2s ease;
}

.popup-headline-anfrage{
  position: relative;
  text-align: center;
  font-size:1.5em;
  font-weight: 700;
}

.abo-info-headline2{
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.abo-info-text2{
  position: relative;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  margin-top:1vh;
}

.abo-info-img2{
  position: relative;
  width: 80%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}


/* Animationen */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}






 .weather-widget{
      width:90%;
      max-width:850px;
      border-radius:24px;
      overflow:hidden;

      background:
        linear-gradient(rgba(20,25,35,0.75), rgba(20,25,35,0.75)),
        url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?q=80&w=1400&auto=format&fit=crop');

      background-size:cover;
      background-position:center;

      color:white;
      padding-top:2vh;
      padding-bottom:2vh;
      padding-left:2vh;
      padding-right:2vh;


      box-shadow:
        0 10px 40px rgba(0,0,0,0.35);

      backdrop-filter:blur(10px);
    }

    .top-weather{
      display:flex;
  align-items:center;
  gap:15px;
    }

    .city{
      font-size:2rem;
      font-weight:bold;
    }

    .main-icon img{
      width:90px;
    }

    .main-icon{
      width:90px;
    }

    .current-temp{
      font-size:3rem;
      font-weight:300;
    }

    .forecast-grid{
      display:grid;
      grid-template-columns:repeat(7, 1fr);
      gap:15px;
    }

    .forecast-card{
      background:rgba(255,255,255,0.08);
      border-radius:18px;
      padding:15px 10px;
      text-align:center;
      transition:0.3s;
      backdrop-filter:blur(8px);
    }

    .forecast-card:hover{
      transform:translateY(-4px);
      background:rgba(255,255,255,0.14);
    }

    .forecast-day{
      font-weight:bold;
      margin-bottom:10px;
      opacity:0.9;
    }

    .forecast-card img{
      width:52px;
      height:52px;
      object-fit:contain;
      margin-bottom:8px;
    }

    .temp-max{
      font-size:1.2rem;
      font-weight:bold;
    }

    .temp-min{
      font-size:0.95rem;
      opacity:0.7;
      margin-top:3px;
    }

    @media(max-width:500px){

      .forecast-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .weather-widget{
        padding:20px;
      }

      .city{
        font-size:1.5rem;
      }
    }











    .img-placeholder{
  width: 100%;
  height: auto;
  margin-top:2vh;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}




/* Vorschau */

/* Modal Slider */
.slider-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.slider-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Buttons */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white;
  border: none;
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Mobile Anpassung */
@media (max-width: 600px) {
  .gallery img {
    height: 140px;
  }
}


.gallery-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
  padding: 20px;
}

.gallery-preview .img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-preview .img:hover img {
  transform: scale(1.05);
}

/* großes Bild links */
.gallery-preview .big {
  grid-row: span 2;
}

/* Overlay */
.gallery-preview .more span {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Inter';
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-preview .big {
    grid-column: span 2;
    grid-row: auto;
    height: 250px;
  }

  .gallery-preview .img {
    height: 160px;
  }
}

@media (max-width: 500px) {
  .gallery-preview {
    grid-template-columns: 0fr;
    gap: 0px;
    row-gap: 10px;
  }

  .gallery-preview .img {
    height: 200px;
  }
}











.details {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.detail {
  padding-top: 1.5rem;
  border-top: 1px solid #000;
}

.detail h4 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Libre_Franklin';
  margin-top:0.5vh;
  margin-left:1vh;
}

.detail p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-top:1vh;
  color: #111;
}

.link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 900px) {
  .details {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .details {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .dream-wrapper {
  margin: 3vh auto;
}
}


.hotel-icon {
  width: 1.5em;
  height: 1.5em;
  padding-right: 1vh;
}


.more-details-headline{
 font-family: 'Kalam';
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    width: 94%;
  margin-left: 3%;
  margin-top: 5vh;
}


.blog-card-slider-bg{
  position: relative;
  width: 100%;
  margin-top:6vh;
}

.itinerary-section {
  position: relative;
  background: url("images/dubai-background2.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(29, 29, 29, 0.95),
    rgba(29, 29, 29, 0.15)
  );
}

.itinerary-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* TEXT */
.itinerary-text {
  color: #fff;
  max-width: 420px;
}

.itinerary-text h4 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'Lobster';
}

.itinerary-text span {
  font-weight: 700;
}

.cta {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  padding-bottom: .3rem;
}

/* SLIDER */
.card-slider {
  position: relative;
  width: 60%;
}

.slider-viewport {
  overflow: hidden;
  font-family: 'Inter';
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s ease;
}

.card {
  min-width: 300px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .45s ease;
}
.card:hover {
  transform: scale(0.95);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.1rem;
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 5;
}

.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .itinerary-content {
    flex-direction: column;
    text-align: center;
  }

  .card-slider {
    width: 100%;
  }

  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
}







.amenities-wrapper {
  overflow-x: hidden;
}

/* Desktop / Tablet */
.amenities {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}


.amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  padding: 0.9rem 1rem;
  border: 1px solid rgb(65, 122, 162);

  box-shadow: rgba(65, 122, 162, 0.12) 0px 2px 4px 0px, rgba(65, 122, 162, 0.32) 0px 2px 16px 0px;
  
  border-radius: 8px;
  background: #fff;

  font-size: 1rem;
  color: #111;
  white-space: nowrap;
    transition: transform .45s ease;
}

.amenity:hover {
  transform: scale(1.05);
    cursor: pointer;
}

.icon {
  font-size: 1.2rem;
}

/* 📱 Mobile: 2 Reihen + horizontal scroll */
@media (max-width: 600px) {
  .amenities-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .amenities {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: minmax(220px, 1fr);

    width: max-content;
    padding-bottom: 1rem;
  }
}






.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }














/* ==========================
   Wellness Bereich
========================== */

.ksa-wellness-section{
    padding:50px 20px;
}

.ksa-wellness-container{
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:70px;
    align-items:center;
}

/* ==========================
   Galerie
========================== */

.ksa-wellness-gallery{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:22px;
    align-items:start;
}

.ksa-gallery-main,
.ksa-gallery-side img{
    overflow:hidden;
    border-radius:22px;
}

.ksa-gallery-main img,
.ksa-gallery-side img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:.45s;
}

.ksa-gallery-main img:hover,
.ksa-gallery-side img:hover{
    transform:scale(1.05);
}

.ksa-gallery-main img{
    height:610px;
}

.ksa-gallery-side img{
    height:470px;
}

.ksa-gallery-caption{
    display:block;
    margin-top:14px;

    color:#6b6b6b;
    font-size:15px;
    font-style:italic;
}

/* ==========================
   Content
========================== */

.ksa-badge-row{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:26px;
}

.ksa-badge{
    background:#8d6a44;
    color:#fff;

    padding:7px 13px;
    border-radius:30px;

    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
}

.ksa-category{
    color:#8d6a44;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.ksa-wellness-content h2{

    font-size:58px;
    line-height:1.1;
    font-weight:400;

    margin-bottom:35px;

    color:#1d1d1d;
}

.ksa-wellness-content p{

    font-size:22px;
    line-height:1.8;
    color:#3f3f3f;

    margin-bottom:28px;
}

.ksa-link{

    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:20px;

    text-decoration:none;
    color:#8d6a44;

    font-size:22px;
    font-weight:600;

    transition:.3s;
}

.ksa-link span{
    transition:.3s;
    font-size:26px;
}

.ksa-link:hover{
    color:#5d4024;
}

.ksa-link:hover span{
    transform:translateX(7px);
}

/* ==========================
   Tablet
========================== */

@media(max-width:1100px){

    .ksa-wellness-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .ksa-wellness-content{
        max-width:850px;
    }

}

/* ==========================
   Mobile
========================== */

@media(max-width:768px){

    .ksa-wellness-section{
        padding:70px 18px;
    }

    .ksa-wellness-gallery{
        grid-template-columns:1fr;
    }

    .ksa-gallery-main img{
        height:420px;
    }

    .ksa-gallery-side img{
        height:320px;
    }

    .ksa-wellness-content h2{
        font-size:38px;
    }

    .ksa-wellness-content p{
        font-size:18px;
        line-height:1.7;
    }

    .ksa-link{
        font-size:18px;
    }

}

/* ==========================
   Kleine Smartphones
========================== */

@media(max-width:480px){

    .ksa-gallery-main img{
        height:320px;
    }

    .ksa-gallery-side img{
        height:240px;
    }

    .ksa-wellness-content h2{
        font-size:30px;
    }

    .ksa-wellness-content p{
        font-size:16px;
    }

    .ksa-badge-row{
        gap:12px;
        flex-wrap:wrap;
    }

}













/* ==========================
   Wellness Bereich
========================== */

.ksa2-wellness-section{
    padding:50px 20px;
}

.ksa2-wellness-container{
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

/* ==========================
   Galerie
========================== */

.ksa2-wellness-gallery{
    display:flex;
    justify-content:center;
    align-items:center;
}

.ksa2-gallery-single{
    width:100%;
    max-width:700px;
}

.ksa2-gallery-single img{
    width:100%;
    height:430px;
    object-fit:cover;

    display:block;

    border-radius:22px;
    overflow:hidden;

    transition:.45s;
}

.ksa2-gallery-single img:hover{
    transform:scale(1.04);
}

.ksa2-gallery-caption{
    display:block;
    margin-top:14px;

    color:#6b6b6b;
    font-size:15px;
    font-style:italic;
}

/* ==========================
   Content
========================== */

.ksa2-wellness-content h2{

    font-size:58px;
    line-height:1.1;
    font-weight:400;

    margin-bottom:35px;

    color:#1d1d1d;
}

.ksa2-wellness-content p{

    font-size:22px;
    line-height:1.8;
    color:#3f3f3f;

    margin-bottom:28px;
}

/* ==========================
   Tablet
========================== */
@media(max-width:1100px){

    .ksa2-wellness-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .ksa2-wellness-content{
        order:1;
        max-width:850px;
    }

    .ksa2-wellness-content h2{
        font-size:33px;
    }

    .ksa2-wellness-gallery{
        order:2;
    }

    .ksa2-gallery-single{
        max-width:100%;
    }

}

@media(max-width:480px){

    .ksa2-gallery-single img{
        height:220px;
    }

    .ksa2-wellness-content h2{
        font-size:30px;
    }

    .ksa2-wellness-content p{
        font-size:16px;
    }

}










/* ===========================
   Individuelle Klassen
=========================== */
.ix-access-overlay{
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
    z-index: 999999;

    /* Blur-Hintergrund */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* Leicht transparente Überlagerung */
    background: rgba(255, 255, 255, 0.18);
}

.ix-access-box{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.ix-access-box h2{
    margin-bottom:15px;
    font-size:28px;
    color:#222;
}

.ix-access-box p{
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
}

.ix-access-input{
    width:100%;
    padding:15px;
    border:2px solid #ddd;
    border-radius:10px;
    font-size:17px;
    outline:none;
    transition:.25s;
    box-sizing:border-box;
}

.ix-access-input:focus{
    border-color:#3f7cff;
}

.ix-access-button{
    margin-top:18px;
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#3f7cff;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.25s;
}

.ix-access-button:hover{
    background:#2b65dd;
}

.ix-access-error{
    color:#e53935;
    margin-top:15px;
    min-height:20px;
    font-weight:bold;
}

/* Responsive */

@media (max-width:600px){

    .ix-access-box{
        padding:25px 18px;
    }

    .ix-access-box h2{
        font-size:23px;
    }

    .ix-access-input,
    .ix-access-button{
        font-size:16px;
    }

}




















/* ====================================
   Badezimmer Bereich
==================================== */

.ksa-grid2-section{
    padding:100px 20px;
    background:#fff;
}

.ksa-grid2-container{

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:90px;

    align-items:center;
}

/* ====================================
   Bilder
==================================== */

.ksa-grid2-gallery{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.ksa-grid2-item{

    overflow:hidden;
    border-radius:20px;
    aspect-ratio:4/3;
}

.ksa-grid2-item img{

    width:100%;
    height:100%;
    display:block;

    object-fit:cover;

    transition:.45s ease;
}

.ksa-grid2-item:hover img{

    transform:scale(1.06);
}

/* ====================================
   Text
==================================== */

.ksa-grid2-content h2{

    font-size:58px;
    line-height:1.15;
    font-weight:400;

    color:#111;

    margin-bottom:28px;
}

.ksa-grid2-content p{

    font-size:21px;
    line-height:1.8;
    color:#555;

    max-width:520px;
}

/* ====================================
   Tablet
==================================== */

@media (max-width:1000px){

    .ksa-grid2-container{

        grid-template-columns:1fr;
        gap:60px;
    }

    /* Text zuerst */

    .ksa-grid2-content{
        order:1;
    }

    /* Bilder darunter */

    .ksa-grid2-gallery{
        order:2;
    }

    .ksa-grid2-content p{
        max-width:100%;
    }

}

/* ====================================
   Mobile
==================================== */

@media (max-width:768px){

    .ksa-grid2-section{
        padding:70px 18px;
    }

    .ksa-grid2-gallery{
        gap:18px;
    }

    .ksa2-wellness-content h2{
      font-size:38px;
    }

    .ksa-grid2-content h2{
        font-size:40px;
    }

    .ksa-grid2-content p{
        font-size:18px;
    }

}

/* ====================================
   Kleine Smartphones
==================================== */

@media (max-width:500px){

    .ksa-grid2-gallery{
        grid-template-columns:1fr;
    }

    .ksa-grid2-content h2{
        font-size:32px;
    }

    .ksa-grid2-content p{
        font-size:16px;
    }

    #badezimmer_bx_1{
      display:block;
    }
    #badezimmer_bx_2{
      display:none;
    }
    #badezimmer_bx_3{
      display:none;
    }
    #badezimmer_bx_4{
      display:block;
    }

}






































/* ===========================================
   Video Hero
=========================================== */

.ksa-videohero-section{

    position:relative;

    height:60vh;
    min-height:620px;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px 20px;
    margin-top: 5vh;
}

/* ===========================================
   Hintergrundvideo
=========================================== */

.ksa-videohero-bg{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

/* ===========================================
   Overlay
=========================================== */

.ksa-videohero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.55)
    );

    z-index:2;
}

/* ===========================================
   Inhalt
=========================================== */

.ksa-videohero-content{

    position:relative;
    z-index:3;

    max-width:900px;

    text-align:center;

    color:#fff;

    animation:ksaHeroFade 1.2s ease;
}

.ksa-videohero-subtitle{

    display:inline-block;

    letter-spacing:3px;
    text-transform:uppercase;

    font-size:15px;
    font-weight:600;

    margin-bottom:18px;

    opacity:.9;
}

.ksa-videohero-content h2{

    font-size:72px;
    line-height:1.05;
    font-weight:500;

    margin-bottom:30px;
}

.ksa-videohero-content p{

    max-width:760px;
    margin:auto;

    font-size:22px;
    line-height:1.8;

    opacity:.95;
}

/* ===========================================
   Button
=========================================== */

.ksa-videohero-button{

    display:inline-block;

    margin-top:45px;

    padding:16px 38px;

    border:2px solid #fff;

    color:#fff;
    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;
    letter-spacing:1px;

    transition:.35s;
}

.ksa-videohero-button:hover{

    background:#fff;
    color:#111;

    transform:translateY(-4px);
}

/* ===========================================
   Animation
=========================================== */

@keyframes ksaHeroFade{

    from{
        opacity:0;
        transform:translateY(35px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===========================================
   Tablet
=========================================== */

@media (max-width:1000px){

    .ksa-videohero-section{

        height:60vh;
        min-height:560px;
    }

    .ksa-videohero-content h2{

        font-size:56px;
    }

    .ksa-videohero-content p{

        font-size:20px;
    }

}

/* ===========================================
   Mobile
=========================================== */

@media (max-width:768px){

    .ksa-videohero-section{

        height:60vh;
        min-height:500px;

        padding:30px 20px;
    }

    .ksa-videohero-content h2{

        font-size:42px;
    }

    .ksa-videohero-content p{

        font-size:18px;
        line-height:1.7;
    }

    .ksa-videohero-button{

        padding:14px 30px;
        font-size:15px;
    }

}

/* ===========================================
   Kleine Smartphones
=========================================== */

@media (max-width:480px){

    .ksa-videohero-content h2{

        font-size:34px;
    }

    .ksa-videohero-content p{

        font-size:16px;
    }

    .ksa-videohero-subtitle{

        font-size:13px;
        letter-spacing:2px;
    }

}

















/* ====================================
   Hinweis Box
==================================== */

.ksa-note-section{

    padding:20px 10px;
}

.ksa-note-box{

    max-width:1000px;
    margin:auto;

    display:flex;
    align-items:flex-start;
    gap:22px;

    background:#eef5ff;

    border-left:5px solid #2f6fff;
    border-radius:18px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ====================================
   Icon
==================================== */

.ksa-note-icon{

    width:54px;
    height:54px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#dce8ff;
    color:#2f6fff;
}

.ksa-note-icon svg{

    width:26px;
    height:26px;
}

/* ====================================
   Inhalt
==================================== */

.ksa-note-label{

    display:inline-block;

    color:#2f6fff;
    font-weight:700;
    font-size:15px;

    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:8px;
}

.ksa-note-content h3{

    margin:0 0 14px;

    font-size:30px;
    font-weight:700;

    color:#1d1d1d;
}

.ksa-note-content p{

    margin:0;

    font-size:18px;
    line-height:1.8;

    color:#555;
}

/* ====================================
   Tablet
==================================== */

@media (max-width:768px){

    .ksa-note-box{

        padding:25px;
        gap:18px;
    }

    .ksa-note-content h3{

        font-size:24px;
    }

    .ksa-note-content p{

        font-size:17px;
    }

}

/* ====================================
   Smartphone
==================================== */

@media (max-width:540px){

    .ksa-note-box{

        flex-direction:column;
        align-items:flex-start;

        padding:22px;
    }

    .ksa-note-icon{

        width:48px;
        height:48px;
    }

    .ksa-note-content h3{

        font-size:21px;
    }

    .ksa-note-content p{

        font-size:16px;
        line-height:1.7;
    }

}

/* ====================================
   Zusatzinfos
==================================== */

.ksa-note-features{

    margin-top:15px;
}

.ksa-feature{

    display:flex;
    align-items:flex-start;
    gap:18px;

    padding:22px 0;
}

.ksa-feature + .ksa-feature{

    border-top:1px solid #d9e6ff;
}

.ksa-feature-icon{

    width:56px;
    height:56px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#dce8ff;

    color:#2f6fff;
}

.ksa-feature-icon svg{

    width:26px;
    height:26px;
}

.ksa-feature strong{

    display:block;

    color:#2f6fff;

    font-size:17px;
    font-weight:700;

    margin-bottom:8px;
}

.ksa-feature p{

    margin:0;

    font-size:17px;

    line-height:1.7;

    color:#555;
}

/* ====================================
   Responsive
==================================== */

@media (max-width:768px){

    .ksa-feature{

        gap:15px;
    }

    .ksa-feature-icon{

        width:50px;
        height:50px;
    }

    .ksa-feature strong{

        font-size:17px;
    }

}

@media (max-width:540px){

    .ksa-feature{

        gap:14px;
    }

    .ksa-feature-icon{

        width:46px;
        height:46px;
    }

    .ksa-feature-icon svg{

        width:22px;
        height:22px;
    }

    .ksa-feature strong{

        font-size:17px;
    }

    .ksa-feature p{

        font-size:15px;
    }

}













.image-card {
    max-width: 700px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    margin-top: 2vh;
}


.image-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.caption {
    padding: 14px 16px;
    color: #333;
    line-height: 1.4;
}














.mxg-gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(1,320px);
    gap:24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vh;
}

.mxg-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#f5f5f5;
    cursor:pointer;
}

.mxg-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.mxg-item:hover img{
    transform:scale(1.06);
}

/* Leichter Schatten */

.mxg-item{
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

/* Optional etwas größere Rundungen */

.mxg-item-large{
    border-radius:26px;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:900px){

    .mxg-gallery-grid{
        grid-template-rows:260px 260px;
        gap:18px;
    }

}

/* ===========================
   Handy
   Nur die ersten zwei Bilder
=========================== */

@media (max-width:650px){

    .mxg-gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:260px 260px;
        gap:18px;
    }

    /* Bild 3 + 4 ausblenden */

    .mxg-gallery-grid .mxg-item:nth-child(3),
    .mxg-gallery-grid .mxg-item:nth-child(4){
        display:none;
    }

}






















/* ==========================================
   Relax Bereich
========================================== */

.rlx-relax-section{
    padding:50px 20px;
}

.rlx-relax-wrapper{

    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:80px;

    align-items:center;
}

/* ==========================================
   Bild
========================================== */

.rlx-image-area{
    width:100%;
}

.rlx-image-area img{

    width:100%;
    height:460px;

    display:block;

    object-fit:cover;

    border-radius:24px;

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    box-shadow:
        0 18px 40px rgba(0,0,0,.10);
}

.rlx-image-area img:hover{

    transform:scale(1.03);

    box-shadow:
        0 28px 55px rgba(0,0,0,.16);
}

.rlx-image-caption{

    display:block;

    margin-top:16px;

    font-size:15px;
    font-style:italic;

    color:#6c6c6c;
}

/* ==========================================
   Text
========================================== */

.rlx-content h2{

    margin:0 0 34px;

    font-size:58px;
    line-height:1.1;
    font-weight:400;

    color:#202020;
}

.rlx-content p{

    margin:0 0 28px;

    font-size:22px;
    line-height:1.8;

    color:#404040;
}

/* ==========================================
   Tablet
========================================== */

@media (max-width:1100px){

    .rlx-relax-wrapper{

        grid-template-columns:1fr;

        gap:25px;
    }

    .rlx-image-area{

        order:1;
    }

    .rlx-content{

        order:2;
        max-width:850px;
    }

    .rlx-content h2{

        font-size:33px;
    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

    .rlx-relax-section{

        padding:30px 18px;
    }

    .rlx-image-area img{

        height:300px;
    }

    .rlx-content h2{

        font-size:30px;
    }

    .rlx-content p{

        font-size:18px;
        line-height:1.7;
    }

}

/* ==========================================
   Kleine Smartphones
========================================== */

@media (max-width:480px){

    .rlx-image-area img{

        height:220px;
    }

    .rlx-content h2{

        font-size:30px;
    }

    .rlx-content p{

        font-size:16px;
    }

}




















/* ===========================
   Ferienwohnung Zimmerlayout
   =========================== */

.fw-room-section{

    width:100%;
    padding:70px 25px;

    display:flex;
    justify-content:center;

    box-sizing:border-box;
}

.fw-room-image{

    position:relative;

    width:100%;
    max-width:1400px;

    overflow:hidden;

    border-radius:30px;
}

.fw-room-image img{

    display:block;

    width:100%;
    height:700px;

    object-fit:cover;
}

/* Infobox */

.fw-room-card{

    position:absolute;

    top:50%;
    left:70px;

    transform:translateY(-50%);

    width:520px;
    max-width:90%;

    padding:55px;

    border-radius:28px;

    background:rgba(255, 255, 255, 0.334);

    backdrop-filter:blur(1px);
    -webkit-backdrop-filter:blur(1px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.20);

    border:1px solid rgba(255,255,255,.45);
}

.fw-room-card h2{

    margin:0 0 25px;

    font-size:3rem;

    line-height:1.1;

    color:#000;

    font-weight:700;
}

.fw-room-card p{

    margin:0;

    font-size:1.30rem;

    line-height:1.8;

    font-weight:500;

    color:#000;
}


/* ===========================
      Tablet
=========================== */

@media (max-width:1000px){

    .fw-room-image img{

        height:600px;
    }

    .fw-room-card{

        left:40px;

        width:460px;

        padding:40px;
    }

    .fw-room-card h2{

        font-size:2.3rem;
    }

}


/* ===========================
      Smartphone
=========================== */

@media (max-width:768px){

    .fw-room-section{

        padding:30px 15px;
    }

    .fw-room-image{

        border-radius:22px;
    }

    .fw-room-image img{

        height:550px;
    }

    .fw-room-card{

        position:absolute;

        left:20px;
        right:20px;
        top:auto;
        bottom:20px;

        transform:none;

        width:auto;

        padding:28px;
    }

    .fw-room-card h2{

        font-size:2rem;
    }

    .fw-room-card p{

        font-size:1rem;

        line-height:1.7;
    }

}


/* ===========================
      Kleine Smartphones
=========================== */

@media (max-width:500px){

    .fw-room-image img{

        height:500px;
    }

    .fw-room-card{

        padding:22px;
    }

    .fw-room-card h2{

        font-size:1.6rem;
    }

    .fw-room-card p{

        font-size:.95rem;
    }

}

















/* ===================================
   Wellness Layout
=================================== */

.fw-spa-section{
    width:100%;
    padding:80px 25px;
    box-sizing:border-box;
}

.fw-spa-container{

    max-width:1400px;
    margin:0 auto;

    display:flex;
    align-items:center;
    gap:90px;
}

.fw-spa-image{

    flex:0 0 42%;
}

.fw-spa-image img{

    width:100%;
    display:block;

    border-radius:28px;

    aspect-ratio:4/5;
    object-fit:cover;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.fw-spa-content{

    flex:1;
}

.fw-spa-content h2{

    margin:0 0 35px;

    font-size:clamp(2.5rem,5vw,4.5rem);

    line-height:1.05;

    font-weight:500;

    color:#222;
}

.fw-spa-content p{

    margin:0 0 30px;

    font-size:1.2rem;

    line-height:1.9;

    color:#555;
}

.fw-spa-content p:last-child{

    margin-bottom:0;
}


/* ===================================
   Tablet
=================================== */

@media (max-width:1000px){

    .fw-spa-container{

        gap:50px;
    }

    .fw-spa-content p{

        font-size:1.1rem;
    }

    .fw-spa-content h2{

        margin-bottom:33px;
    }

}


/* ===================================
   Smartphone
=================================== */

@media (max-width:768px){

    .fw-spa-section{

        padding:50px 20px;
    }

    .fw-spa-container{

        flex-direction:column;
        gap:35px;
    }

    .fw-spa-image{

        width:100%;
    }

    .fw-spa-content{

        width:100%;
        text-align:left;
    }

    .fw-spa-content h2{

        margin-bottom:25px;
    }

    .fw-spa-content p{

        font-size:1rem;
        line-height:1.8;
    }

}











/* ---------- Trigger ---------- */

.cm-popup-trigger{
    max-width:400px;
    padding:30px;
    border-radius:18px;
    background:#ffffff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.3s;
    margin:auto;
}

.cm-popup-trigger:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* ---------- Overlay ---------- */

.cm-modal{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.65);
    backdrop-filter:blur(5px);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

    padding:20px;
}

.cm-modal.active{
    opacity:1;
    visibility:visible;
}

/* ---------- Popup ---------- */

.cm-modal-box{

    position:relative;

    width:100%;
    max-width:650px;

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.18);

    transform:translateY(40px) scale(.95);

    transition:.35s;
}

.cm-modal.active .cm-modal-box{
    transform:translateY(0) scale(1);
}

/* ---------- Close ---------- */

.cm-modal-close{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#f4f4f4;

    font-size:26px;

    cursor:pointer;

    transition:.25s;
}

.cm-modal-close:hover{

    background:#222;
    color:#fff;

    transform:rotate(90deg);

}


/* ---------- Responsive ---------- */

@media (max-width:768px){

    .cm-modal-box{

        padding:28px;

        border-radius:18px;

    }

}













.nxv-container{

    max-width:1200px;
    margin:auto;
}

.nxv-title{

    font-size:clamp(32px,5vw,35px);
    font-weight:700;
    text-align:center;
    margin-bottom:60px;
    color:#222;

}

/* Slider */

.nxv-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.nxv-slider-window{

    width:100%;
    max-width:900px;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    background:#fff;

    transition:height .45s ease;
}

.nxv-slider-track{

    transition:transform .55s ease;

}

.nxv-slide{

    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

}

.nxv-slide img{

    width:100%;
    height:auto;

    display:block;

    object-fit:contain;

}

.nxv-arrow{

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:
    0 8px 20px rgba(0,0,0,.12);

    cursor:pointer;

    font-size:24px;

    transition:.3s;

}

.nxv-arrow:hover{

    background:#111;
    color:#fff;
    transform:scale(1.08);

}

.nxv-text{

    margin-top:50px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;

}

.nxv-text p{

    font-size:19px;
    line-height:1.8;
    color:#666;

}

/* Responsive */

@media(max-width:768px){

    .nxv-slider{

        gap:12px;

    }

    .nxv-slider-window{

        height:auto;

    }

    .nxv-slide{

        height:auto;

    }

    .nxv-arrow{

        width:42px;
        height:42px;
        font-size:18px;

    }

}



*{
  font-family: 'Kalam';
}










.mrx-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.mrx-slider-window{
    width:100%;
    max-width:900px;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    background:#fff;
    transition:height .45s ease;
}

.mrx-slider-track{
    transition:transform .55s ease;
}

.mrx-slide{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.mrx-slide img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

.mrx-arrow{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    cursor:pointer;
    font-size:24px;
    transition:.3s;
}

.mrx-arrow:hover{
    background:#111;
    color:#fff;
    transform:scale(1.08);
}

/* Responsive */
@media(max-width:768px){

    .mrx-slider{
        gap:12px;
    }

    .mrx-arrow{
        width:42px;
        height:42px;
        font-size:18px;
    }
}
















/* ===================================
   KRAFTORT WELCOME
   Eigene Klassen - keine Überschneidung
=================================== */

.ko-welcome-section{
    width:100%;
    padding:50px 0px;
    background:#fdfaf7;
    display:flex;
    justify-content:center;
    overflow:hidden;
}

.ko-welcome-container{
    max-width:1200px;
    width:100%;
    text-align:center;
}

.ko-title-shimmer{

    margin:0;
    font-family: "Kalam";
    font-size:5vh;
    font-weight:800;
    letter-spacing:6px;
    line-height:1;

    background:linear-gradient(
        110deg,
        #8d6a2f 0%,
        #d5b36a 20%,
        #e7c477 50%,
        #8b6529 100%
    );

    background-size:250% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:koGoldShimmer 15s linear infinite;
}

.ko-subtitle{

    margin-top:18px;
    margin-bottom:35px;

    font-family:"Kalam";
    font-size:2vh;
    font-weight:400;
    letter-spacing:5px;

    color:#454545;
}

.ko-divider{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.ko-divider span{

    width:120px;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #c9a35d,
        transparent
    );
}

.ko-diamond{

    width:14px;
    height:14px;

    background:#c9a35d;

    transform:rotate(45deg);

    box-shadow:
    0 0 10px rgba(212,175,55,.45),
    0 0 20px rgba(212,175,55,.25);
}

/* Gold Animation */

@keyframes koGoldShimmer{

    0%{
        background-position:-250% center;
    }

    100%{
        background-position:250% center;
    }

}

/* Responsive */

@media(max-width:768px){

    .ko-welcome-section{
        padding:40px 0px;
    }

    .ko-title-shimmer{
        letter-spacing:3px;
    }

    .ko-subtitle{
        letter-spacing:3px;
    }

    .ko-divider span{
        width:70px;
    }

}

@media(max-width:480px){

    .ko-title-shimmer{
        font-size:42px;
    }

    .ko-subtitle{
        font-size:22px;
    }

    .ko-divider span{
        width:45px;
    }

}












.stickyBottomBanner_X91A {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    z-index: 99;
    overflow: hidden;
}

.stickyBottomBannerImage_X91A {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* Verlauf */
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%,
        rgba(0,0,0,.4) 20%,
        rgba(0,0,0,1) 30%);
    mask-image: linear-gradient(to bottom,
        transparent 0%,
        rgba(0,0,0,.4) 20%,
        rgba(0,0,0,1) 30%);
}





.nxmail-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-top:2vh;

    padding:7px 22px;
    background:#000;
    color:#fff;

    border:2px solid #2b2b2b;
    border-radius:16px;

    text-decoration:none;
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    font-weight:600;
    letter-spacing:1px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 6px 18px rgba(0,0,0,.35);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.nxmail-btn:hover{
    background:#111;
    transform:translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 10px 28px rgba(0,0,0,.45);
}

.nxmail-btn:active{
    transform:scale(.98);
}

.nxmail-icon{
    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#000;

    border-radius:50%;
    flex-shrink:0;

    box-shadow:0 2px 8px rgba(255,255,255,.2);
}

.nxmail-icon svg{
    width:20px;
    height:20px;
}

.nxmail-text{
    white-space:nowrap;
}

@media (max-width:600px){

    .nxmail-btn{
        font-size:18px;
        padding:10px 18px;
        gap:12px;
    }

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

    .nxmail-icon svg{
        width:18px;
        height:18px;
    }

}