/*--------------------------------------------------------------
# Sticky Header
--------------------------------------------------------------*/
#sticky_header {
  position: relative;
  z-index: 0;
  margin-top: 0;
  /* Beispielhöhe, falls nötig */
  
  overflow: hidden;
}

#sticky_header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dunkler Schleier */
#sticky_header::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: rgba(0, 0, 0, 0.5); /* schwarz mit 50% Deckkraft */
  z-index: 1;
}

.sticky-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70%;  /* Breite wie gewünscht */
  padding: 0 1rem;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  color: #fff;
  text-align: center;
  z-index: 2;
}


.sticky-container h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-light, #fff);
}

.sticky-container h1 span {
  color: var(--bs-primary);
}

.sticky-container h2 {
  font-size: 1.5rem;
  font-weight: 400;
  /*text-transform: uppercase;*/
  margin-bottom: 1.5rem;
  color: var(--bs-light, #fff);
}

.sticky-container h3 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--bs-light, #fff);
}

.btn-get-started {
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 0.3rem;
  color: var(--bs-light, #fff);
  background-color: rgba(var(--bs-primary-rgb), 1);
  border: none;
  transition: background-color 0.3s ease;
}

.btn-get-started:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.8);
  color: #fff;
}

