@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --mb-primary: #1e3e57;
  --mb-secondary: #3b4249;
  --mb-sand: #f4f1ec;
  --mb-sand-dark: #e7dfd4;
  --mb-foam: #edf3f7;
  --mb-card: #ffffff;
  --mb-radius: 20px;
  --mb-radius-lg: 28px;
  --mb-shadow: 0 22px 50px rgba(30, 62, 87, 0.18);
  
}

.mb-home {
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: var(--mb-secondary);
  background: radial-gradient(circle at 15% 10%, rgba(30, 62, 87, 0.12), transparent 40%),
    radial-gradient(circle at 85% 16%, rgba(30, 62, 87, 0.08), transparent 40%),
    var(--mb-sand);
  padding-bottom: clamp(40px, 6vw, 90px);
  overflow-x: hidden;
}

.mb-home h1,
.mb-home h2,
.mb-home h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--mb-primary);
  margin: 0 0 12px;
}

.mb-home p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.mb-home a {
  color: inherit;
  text-decoration: none;
}

.mb-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(59, 66, 73, 0.75);
}

.mb-section {
  max-width: 1680px;
  margin: clamp(28px, 6vw, 72px) auto 0;
  padding: 0 clamp(18px, 6vw, 56px);
}

.mb-panel {
  background: var(--mb-card);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
  padding: clamp(22px, 5vw, 48px);
}

.mb-panel--intro {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

.mb-section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(20px, 4vw, 32px);
}

.mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  text-align: center;
}

.mb-btn--primary {
  background: #ffffff;
  color: var(--mb-primary);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.mb-btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.mb-btn--light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--mb-primary)!important;
}

.mb-btn:hover {
  transform: translateY(-1px);
}

.mb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--mb-primary);
}

.mb-link::after {
  content: ">";
  font-size: 18px;
}

.mb-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(145deg, #1e3e57 0%, #234b68 45%, #2c5d80 100%);
  color: #ffffff;
  overflow: hidden;
}

.mb-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(90px, 12vw, 170px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDE0MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAsODAgQzE1MCwyMCAzNTAsMjAgNjAwLDgwIEM4NTAsMTQwIDEwNTAsMTQwIDEyMDAsODAgTDEyMDAgMTQwIEwwIDE0MCBaIiBmaWxsPSIjZjRmMWVjIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  pointer-events: none;
}

.mb-hero__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) clamp(22px, 6vw, 68px) clamp(90px, 12vw, 150px);
  position: relative;
  z-index: 1;
}

.mb-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 6vw, 56px);
  align-items: center;
}

.mb-hero__content h1,
.mb-hero__content h2,
.mb-hero__content h3 {
  color: #ffffff;
}

.mb-hero__content h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.15;
}

.mb-hero .mb-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.mb-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.9);
}

.mb-hero__tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.mb-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.mb-hero__trust {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.mb-hero__trust img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
}

.mb-trust__title {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.mb-trust__text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.mb-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.mb-hero__highlights span {
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  position: relative;
}

.mb-hero__highlights span::before {
  content: "\2022";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.55);
}

.mb-hero__highlights span:first-child::before {
  content: "";
  margin: 0;
}

.mb-slider {
  background: var(--mb-card);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
  overflow: hidden;
  
}


.mb-slider__track {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: clamp(280px, 48vw, 520px);
}

.mb-slider--hero .mb-slider__track {
  aspect-ratio: auto;
  height: clamp(360px, 55vw, 620px);
  min-height: 360px;
}

.mb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.mb-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.mb-slide__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
}

.mb-slider--hero .mb-slide__overlay {
  padding: 20px;
  gap: 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.mb-slide__overlay h3 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.mb-slide__eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
}

.mb-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  gap: 12px;
}

.mb-slider__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e0e4e7;
  background: #ffffff;
  color: var(--mb-primary);
  font-size: 20px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mb-slider__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.mb-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.mb-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #c5cfd7;
  cursor: pointer;
  transition: width 160ms ease, background-color 160ms ease;
}

.mb-dots button.is-active {
  width: 24px;
  background: var(--mb-primary);
}

.mb-intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 5vw, 36px);
  align-items: center;
}

.mb-islands {
  display: grid;
  gap: 16px;
}

.mb-island-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  background: #ffffff;
  border-radius: var(--mb-radius);
  padding: 12px;
  border: 1px solid rgba(30, 62, 87, 0.12);
  box-shadow: 0 10px 24px rgba(30, 62, 87, 0.08);
}

.mb-island-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
}

.mb-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.mb-benefit {
  background: var(--mb-foam);
  border-radius: var(--mb-radius);
  padding: 18px;
  border: 1px solid rgba(30, 62, 87, 0.1);
}

.mb-card__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(59, 66, 73, 0.6);
  margin: 0;
}

.mb-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mb-panel--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
}

.mb-video__frame {
  position: relative;
  border-radius: var(--mb-radius);
  overflow: hidden;
  background: #1b2d3b;
  aspect-ratio: 16 / 9;
}

.mb-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mb-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 200ms ease;
}

.mb-video__play,
.mb-video__stop {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mb-video__play {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mb-video__play::before {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--mb-primary);
  margin-left: 4px;
}

.mb-video__stop {
  display: none;
  right: 16px;
  top: 16px;
}

.mb-video__stop::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--mb-primary);
  border-radius: 3px;
}

.mb-video__frame.is-playing .mb-video__poster,
.mb-video__frame.is-playing .mb-video__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mb-video__frame.is-playing .mb-video__stop {
  display: inline-flex;
}

.mb-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.mb-testimonials {
  display: grid;
  gap: 16px;
}

.mb-testimonial {
  background: var(--mb-foam);
  border-radius: var(--mb-radius);
  padding: 18px;
  border: 1px solid rgba(30, 62, 87, 0.1);
}

.mb-testimonial__stars {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--mb-primary);
}

.mb-testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--mb-secondary);
}

.mb-trust-card {
  background: #ffffff;
  border-radius: var(--mb-radius);
  border: 1px solid rgba(30, 62, 87, 0.12);
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
  box-shadow: 0 12px 24px rgba(30, 62, 87, 0.12);
}

.mb-trust-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.mb-panel--accent {
  background: linear-gradient(120deg, #f8f6f2 0%, #eef3f7 100%);
}

.mb-direct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.mb-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mb-checklist li {
  padding-left: 26px;
  position: relative;
}

.mb-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--mb-primary);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.mb-direct-cta {
  background: #ffffff;
  border-radius: var(--mb-radius);
  padding: 20px;
  border: 1px solid rgba(30, 62, 87, 0.12);
}

.mb-underkuenfte-grid,
.mb-property-grid,
.mb-activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

@media (max-width: 720px) {
	.mb-underkuenfte-grid,
.mb-property-grid,
.mb-activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
	
}




.mb-underkuenfte-card,
.mb-property-card,
.mb-activity-card {
  background: #ffffff;
  border-radius: var(--mb-radius);
  border: 1px solid rgba(30, 62, 87, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(30, 62, 87, 0.08);
}

.mb-underkuenfte-card__media img,
.mb-property-card__media img,
.mb-activity-card__media img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  display: block;
}

.mb-underkuenfte-card__body,
.mb-property-card__body,
.mb-activity-card__body {
  padding: 18px;
}

.mb-faq-list {
  display: grid;
  gap: 12px;
}

.mb-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(30, 62, 87, 0.12);
  padding: 12px 16px;
  background: #ffffff;
}

.mb-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--mb-primary);
}

.mb-section--cta {
  max-width: 1680px;
}

.mb-panel--cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: var(--mb-primary);
  color: #ffffff;
}

.mb-panel--cta h2,
.mb-panel--cta p {
  color: #ffffff;
}

.mb-cta__actions {
  display: flex;
}

.mb-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .mb-hero__grid {
    grid-template-columns: 1fr;
  }

  .mb-hero__media {
    order: -1;
  }
}

@media (max-width: 680px) {
  .mb-island-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mb-island-card img {
    height: 160px;
  }

  .mb-slide__overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .mb-slider__controls {
    flex-wrap: wrap;
  }

  .mb-panel--cta {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .mb-slider--hero .mb-slider__track {
    height: clamp(360px, 85vw, 520px);
  }

  .mb-slider--hero .mb-slide__overlay {
    padding: 16px;
  }

  .mb-slider--hero .mb-slide__overlay h3 {
    font-size: 20px;
  }
}



.page-id-3005 #main-content.container {
  max-width: 100vw;
}
.page-id-3005 .wd-prefooter {
display:none;}

.page-id-3005 .footer-container {
display:none;}
.page-id-3005 .whb-header  {
display:none;}
.page-id-3005 .contact-button  {
display:none;}

