@font-face { font-family: Inter; src: url('Inter/Inter-VariableFont_slnt,wght.ttf'); } 
@font-face { font-family: Lobster; src: url('Lobster/Lobster-Regular.ttf'); } 

*{
	padding: 0;
	margin: 0 ;
  font-family: 'Inter';
}





.demo-banner-wrapper {
  width: 100%;
  background: linear-gradient(90deg, #3bb2a6, #2f9e93);
  padding: 10px 15px;
  box-sizing: border-box;
}

.demo-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.demo-banner-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.demo-banner-button {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.demo-banner-button:hover {
  background: #ffffff;
  color: #2f9e93;
  border-color: #ffffff;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .demo-banner-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .demo-banner-text {
    font-size: 14px;
  }

  .demo-banner-button {
    font-size: 13px;
  }
}





/* 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 {
    background: rgba(255,255,255,0.85);
    padding: 40px 60px;
    border-radius: 40px;
    text-align: center;
}

.hero h1 {
    font-family: 'Inter', serif;
    font-size: 48px;
    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: 18px;
}

/* 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;
}

/* 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: 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);
}

#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;
  }
}











/* 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%;
}

/* Text */
.nxr-rating-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.nxr-rating-text {
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 22px;
}

/* Button */
.nxr-rating-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 15px;
  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;
  background: #f4f4f4;
  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: 4vh;
}

.card-content p{
  position: relative;
  text-align: center;
  margin-top:1vh;
  font-size: 18px;
  text-align: 'Inter';
}



.image-bg-color{
  position: relative;
  width: 100%;
  height: 2vh;
  background-color: #417aa2;
}



.hero h1 {
    font-family: 'Inter', serif;
    font-size: 48px;
    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: #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 */
.list {
    line-height: 2;
    font-size: 18px;
}

/* 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: 26px;
  letter-spacing: 2px;
  color: #333;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Rechte Seite */
.dream-right {
  flex: 2;
}

.dream-text {
  font-size: 18px;
  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: 18px;
  }
}







.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: 16px;
  letter-spacing: 1px;
}

.ksx-feature-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  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 */
.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%;
}

/* Text */
.nxr-rating-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.nxr-rating-text {
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 22px;
}

/* Button */
.nxr-rating-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 15px;
  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;
  background: #f4f4f4;
  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;
}

/* 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: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 0;
}

.guestinfo-text {
  font-size: 15px;
  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;
    }

}

.card-content h2{
  position: relative;
  text-align: center;
  margin-top:3vh;
  text-align: 'Inter';
  font-size: 4vh;
}

.card-content p{
  position: relative;
  text-align: center;
  margin-top:1vh;
  font-size: 18px;
  text-align: 'Inter';
}



.image-bg-color{
  position: relative;
  width: 100%;
  height: 2vh;
  background-color: #417aa2;
}



.hero h1 {
    font-family: 'Inter', serif;
    font-size: 48px;
    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: #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 */
.list {
    line-height: 2;
    font-size: 18px;
}

/* 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: 26px;
  letter-spacing: 2px;
  color: #333;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Rechte Seite */
.dream-right {
  flex: 2;
}

.dream-text {
  font-size: 18px;
  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: 18px;
  }
}





/* 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: '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;
  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 */
.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%;
}

/* Text */
.nxr-rating-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.nxr-rating-text {
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 22px;
}

/* Button */
.nxr-rating-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 15px;
  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;
  background: #f4f4f4;
  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;
    }
}








.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 16px;
  }
}





.ctaX-wrapper {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.ctaX-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ctaX-icon {
  font-size: 28px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.ctaX-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ctaX-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
}

.ctaX-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #ffffff;

  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(45,212,191,0.4);
}

.ctaX-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45,212,191,0.6);
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .ctaX-card {
    padding: 30px 15px;
  }

  .ctaX-title {
    font-size: 20px;
  }

  .ctaX-subtitle {
    font-size: 14px;
  }

  .ctaX-button {
    font-size: 14px;
    padding: 10px 18px;
  }
}