.boredoc-infobox {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.boredoc-infobox-text {
  flex: 1 1 65%;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.boredoc-infobox-image {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boredoc-infobox-image img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s;
}
.boredoc-infobox-image img:hover {
  transform: scale(1.02);
}

/* Mobile-Anpassung */
@media (max-width: 768px) {
  .boredoc-infobox {
    flex-direction: column;
  }
  .boredoc-infobox-text {
    order: 1;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .boredoc-infobox-image {
    order: 2;
    flex: 1 1 75%;
  }
}
.boredoc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.boredoc-lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
}

.boredoc-lightbox-content img {
  display: block;
  width: auto; /* nicht verzerren */
  height: auto; /* nicht verzerren */
  max-width: 95vw; /* an Viewport anpassen */
  max-height: 95vh; /* an Viewport anpassen */
  object-fit: contain; /* Verhältnis beibehalten */
  border-radius: 4px;
}

.boredoc-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  color: #000;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.boredoc-infobox-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}
.boredoc-infobox {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.boredoc-infobox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.boredoc-infobox-image {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boredoc-infobox-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  cursor: pointer;
}

.boredoc-infobox-text {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.boredoc-infobox-textwide {
  margin-top: 2rem;
}

.boredoc-infobox-textwide p {
  margin-bottom: 1rem;
}

.boredoc-infobox-textwide .btn {
  margin-top: 1rem;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .boredoc-infobox-row {
    flex-direction: column;
  }

  .boredoc-infobox-image,
  .boredoc-infobox-text {
    flex: 1 1 100%;
  }

  .boredoc-infobox-heading {
    font-size: 1.4rem;
  }
}
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0.5em 1em;
  font-weight: bold;
}

.lang-dropdown {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: white;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 12em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.lang-dropdown li {
  border-bottom: 1px solid #eee;
}

.lang-dropdown li a {
  display: block;
  padding: 0.6em 1em;
  text-decoration: none;
  color: #333;
}

.lang-dropdown li a:hover {
  background-color: #f5f5f5;
}

.lang-dropdown.show {
  display: block;
}
.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ⬅ sorgt für linksbündige Ausrichtung */
  justify-content: flex-start;
}

.brand-main .navbar-brand {
  /* display: flex;*/
  align-items: center;
  gap: 0.5em;
  font-size: 2.5rem;
  font-weight: bold;
  text-decoration: none;
}

.brand-lang {
  /*  margin-top: 1.4em;*/
  font-size: 1.2rem;
  text-align: left;
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  user-select: none;
}

.lang-arrow {
  font-size: 0.75em;
}

.lang-dropdown {
  display: none;
  position: absolute;
  z-index: 1000;
  margin-top: 0.3em;
  background: white;
  border: 1px solid #ccc;
  padding: 0;
  list-style: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 10em;
}

.lang-dropdown li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #333;
}

.lang-dropdown li a:hover {
  background-color: #f0f0f0;
}

.lang-dropdown.show {
  display: block;
}

.lang-flag {
  font-size: 1.2rem;
  margin: 0 0.5em; /* ⬅ etwas Platz links & rechts */
  line-height: 0;
  transform: translateY(1px); /* optional: vertikale Ausrichtung */
}

.navbar-container {
  /* display: flex;*/
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0.5em 1em;
}

/* Branding */
.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Menüblock */
.menu-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 0.5em;
}

.menu-items {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-items a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Mobile: Hamburger + Dropdown */
@media (max-width: 768px) {
  .menu-items {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }

  .menu-items.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar-container {
    align-items: stretch;
  }
}
.boredoc-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.boredoc-slider {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.slider-inner {
  display: flex;
  transition: transform 0.4s ease;
  gap: 16px;
  align-items: center;
}

.slider-inner img {
  flex: 0 0 auto;
  /*  width: 100%;*/
  max-width: 100%;
  max-height: 60vh; /* z. B. auf 60% der Viewporthöhe begrenzen */
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding-right: 2em;
}

.slider-btn {
  background: none;
  border: none;
  font-size: 2em;
  color: #444;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}
