/* Hintergrund des Bodys und der Karussell-Container */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Georgia', serif;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url('https://your-background-image-url.com') center center / cover no-repeat fixed;
}

/* Container für Logo und Karussell */
.container-fluid {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
}

/* Fixiertes Logo auf der linken Seite */
.logo-container {
  position: relative;
  z-index: 1000;
  margin-right: 20px;
}

.logo-container img {
  max-width: 150px; /* Logo-Größe anpassen */
}

/* Karussell Container */
.carousel-container {
  flex: 1;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-inner, .carousel-item, .carousel-item img {
  height: 100%;
}

/* Karussell-Bilder */
.carousel-item img {
  object-fit: cover;
}

/* Positionierung der Caption */
.carousel-caption-static {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Karussell-Navigation (Vorwärts/Rückwärts) */
.carousel-control-prev, .carousel-control-next {
  z-index: 15; /* Über den Bildern und Caption */
}

/* Karussell-Indikatoren (Punkte unter dem Karussell) */
.carousel-indicators {
  justify-content: center;
  bottom: 20px;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 15;
}

.carousel-indicators button {
  background-color: #ff8700 !important;
  opacity: 0.8;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 4px;
  transition: opacity 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #e67600 !important; /* etwas dunkler für aktiven Zustand */
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-fluid {
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .carousel-container {
    max-width: 100%;
  }

  .carousel-item img {
    height: 300px;
  }

  .carousel-caption-static h5 {
    font-size: 1rem;
  }

  .carousel-caption-static p {
    font-size: 0.8rem;
  }
}

.carousel-logo-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.carousel-logo-overlay img {
  max-height: 60px;
  width: auto;
  opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.8); /* dunkler Hintergrund */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.09 1.41 6.67 4 4.09 6.59 5.5 8 9.5 4z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0L1.09 1.41 3.67 4 1.09 6.59 2.5 8 6.5 4z'/%3E%3C/svg%3E");
}

.carousel-caption-fixed {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  z-index: 10;
}

.carousel-caption-fixed h5,
.carousel-caption-fixed p {
  margin: 0;
  color: #333;
}
