.my-button {
    background-color: rgb(96, 15, 172) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2); /* gestrichelt & dezent */
  width: 70%;
  margin: 0 auto;
}


.text-purple {
    color: rgb(96, 15, 172) !important;
}

.border-purple {
    border-color: rgb(96, 15, 172) !important;
}

footer {
    background-color: rgb(154, 111, 194);
    color: rgb(255, 255, 255);
    padding: 3rem 0;
}

footer h5 {
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    color: white;
    text-decoration: none;
    line-height: 1.8;
}

footer ul li a:hover {
    text-decoration: none;
    color: rgb(96, 15, 172);
}

.butn {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 250px;
  cursor: pointer;
}
.butn-one {
  color: rgb(96, 15, 172);
  transition: all 0.3s;
  position: relative;
}
.butn-one span {
  transition: all 0.3s;
}
.butn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgb(96, 15, 172);
  border-bottom-color: rgb(96, 15, 172);
  transform: scale(0.1, 1);
}
.butn-one:hover span {
  letter-spacing: 2px;
}
.butn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.butn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.1);
}
.butn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0) grayscale(100%) brightness(0); /* Makes the icon black */
}

.carousel-caption {
  bottom: 5px;
}

.carousel-caption h5,
.carousel-caption p {
  color: rgb(53, 50, 50); /* Makes the caption text black */
}
.butn-one a {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 2;
}
.text-purple {
  color: rgb(96, 15, 172);
}

.underline-purple {
  width: 50px;
  height: 4px;
  background-color: rgb(96, 15, 172);
}

.advantage-card {
  padding: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  height: 100%;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(96, 15, 172, 0.1);
}
.magic-line {
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: rgb(96, 15, 172); /* Deine Wunschfarbe */
  transition: all 0.3s ease;
  width: 0;
  left: 0;
}

.navbar-nav {
  position: relative;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box.leistungen {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.feature-box.benoetigt {
    background-color: rgba(96, 15, 172, 0.05);
    border: 1px solid rgba(96, 15, 172, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.feature-box h3 {
    margin-bottom: 20px;
}

.feature-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-box ul li:last-child {
    border-bottom: none;
}

.list-group-item {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.list-group-item:hover {
    background-color: var(--hover-bg-color, rgb(96, 15, 172)); /* Fallback color */
    color: white;
}
.bild-vier {
  width: 100%;
  height: 300px; /* passt die Bildhöhe für ein elegantes Rechteck an */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.bild-vier img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.bild-vier img:hover {
  transform: scale(1.05);
}
