.kmw-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: Montserrat, sans-serif;
}

.kmw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kmw-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.kmw-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
}

.kmw-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.2s;
}

.kmw-menu li a:hover {
  color: #557cbf;
}

.kmw-burger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Responsives Menü */
@media (max-width: 768px) {
  .kmw-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  .kmw-menu.show {
    display: flex;
  }

  .kmw-burger {
    display: block;
  }
}

/* Allgemeine Containerbreite auf Desktop */
.container,
.vc_row,
.wpb_row {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Auf kleineren Geräten automatisch anpassen */
@media (max-width: 768px) {
  .container,
  .vc_row,
  .wpb_row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  blockquote.wp-block-quote {
    padding: 20px !important;
    margin: 20px !important;
  }

  blockquote.wp-block-quote p {
    font-size: 20px !important;
  }
}

.support-banner {
  width: 100%;
  background: #ADD8E6;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  color: #000;
  box-sizing: border-box;
  margin: 20px auto;
}

/* Mobil-Anpassung */
@media (max-width: 480px) {
  .support-banner {
    padding: 20px 12px;
    font-size: 1.1rem;
  }
}


.gradient-bg {
  background: linear-gradient(to right, #add7e6, #f3d7df);
}

/* Container zentriert den Button */
.button-container {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  z-index: 1;
}

/* Grund‑Styling des Buttons */
.kkv-button {
  display: inline-block;
  padding: 28px 56px;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background: linear-gradient(to right, #ADD8E6, #f3d7df);
  border: none;
  border-radius: 12px;
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  margin: 10px auto;
  z-index: 1;
}

/* Leucht‑Schein hinter dem Button */
.kkv-button::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(
    45deg,
    #f1bcc8,
    #9ac6e2,
    #fceaaf,
    #fdcdbf,
    #d1e6e0,
    #e3bee9,
    #f5ecc5,
    #aedff9,
    #fdcfd8,
    #f7d5c8,
    #c1f0d5
  );
  background-size: 400%;
  z-index: -1;
  filter: blur(8px);
  animation: glowAnimation 40s linear infinite;
}

/* Hover‑Effekt */
.kkv-button:hover {
  background: linear-gradient(to right, #ADD8E6, #f3d7df);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

/* Klasse, die per JS für die „Wiggle“-Animation dazu‑/entfernt wird */
.kkv-button.animate {
  animation: wiggle 0.9s ease-in-out;
}

/* Spezifische Anpassungen nur für dieses Element */
#reserveButton {
  position: relative;
  transform: none;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
}

/* Keyframes, die für die Animationen benötigt werden */
@keyframes wiggle {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(2deg); }
  30%  { transform: rotate(-2deg); }
  45%  { transform: rotate(2deg); }
  60%  { transform: rotate(-1deg); }
  75%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

@keyframes glowAnimation {
  0%   { background-position: 0 0; }
  50%  { background-position: 400% 400%; }
  100% { background-position: 0 0; }
}



.responsive-map-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 40px auto; /* Abstand und Zentrierung */
  padding: 0 20px;     /* etwas Seitenabstand auf kleineren Geräten */
}

.responsive-map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Optional: nur in mobiler Ansicht (unter 768px) direkt vor Footer anzeigen */
@media (max-width: 768px) {
  .responsive-map-wrapper {
    order: -1; /* Falls du Flexbox nutzt */
  }
}