.btn-danger {
  background-color: #d52516 !important;
  border-color: #d52516 !important;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #b71f13 !important;
  border-color: #b71f13 !important;
}


/* Navigation */
.navbar-menu {
  background-color: #fff;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Donut-Animation */
.donut-segment {
  stroke-dasharray: 0 213;
  animation: donutGrow 2s ease-out forwards;
}

@keyframes donutGrow {
  0% { stroke-dasharray: 0 213; }
  100% { stroke-dasharray: inherit; }
}

/* Fortschrittsbalken */
.animated-bar {
  transition: width 2s ease-in-out;
}

/* Slider-Bild Wrapper */
.slider-section {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.slider-text-box{
  padding:1.5rem;
}

.slider-img-wrapper {
  position: relative;
  overflow: hidden;
  max-height: 600px; 
}

.slider-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
/* Statistikbereich */
.stats-section {
  position: relative;
  z-index: 0;
  padding-top: 2rem;
}
.btn-primary {
  background-color: #d52516;
  border-color: #d52516;
}

.btn-primary:hover {
  background-color: #b31d11;
  border-color: #a81b10;
}
.telegram-post .row {
  display: flex;
  flex-wrap: wrap;
}

.telegram-post .col-md-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 15px;
}

.telegram-post .col-md-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}
.telegram-post:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    transition: 0.2s ease-in-out;
}
.telegram-post a {
  word-break: break-word;
  overflow-wrap: break-word;
}
form .form-group {
  margin-bottom: 2rem;
}

form .form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

form .form-control {
  padding: 1rem 1rem 1rem 2.5rem;
  border-radius: 0.4rem;
  border: 1px solid #ccc;
}

.form-icon-wrapper {
  position: relative;
}

.form-icon-wrapper i {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #d52516;
  font-size: 1.1rem;
}
form h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d52516; /* Deine Projekt-Primärfarbe */
  margin-bottom: 1.5rem;
}



/* Mobile Optimierung */
@media (max-width: 768px) {
  .slider-img-wrapper img {
    height: auto;
    object-fit: contain;
    max-height: none;
  }
  .slider-section {
    padding-top: 3.5rem;
  }
  .slider-text-box{
    padding:.5rem;
  }
  .btn-unterstuetzen{
    margin-bottom: 20px;
  }
}



