/* =====================================================
   CUSTOM CAROUSEL (Bootstrap-3-kompatibel, ohne Bootstrap)
===================================================== */

.carousel {
  position: relative;
  width: 100%;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  display: none;
  position: relative;
  width: 100%;
}

.carousel-inner > .active {
  display: block;
}

/* Slide-Animation */
.carousel-inner > .item {
  transition: transform 0.6s ease-in-out;
}

/* Bilder */
.carousel-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Pfeile ===== */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.carousel-control.left {
  left: 12px;
}

.carousel-control.right {
  right: 12px;
}

.carousel-control:hover {
  background: rgba(0,0,0,0.8);
}

/* ===== Pfeil-Symbole (ersetzt Glyphicons) ===== */
.carousel-control.left::before {
  content: "‹";
}

.carousel-control.right::before {
  content: "›";
}

/* ===== Indicators ===== */
.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.carousel-indicators .active {
  background: #fff;
}
