/*--------------------------------------------------------------
# carousel
--------------------------------------------------------------*/
#hero {
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  margin-top: -80px;
}

/* Carousel-Grundstruktur */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100%;
}

/* Einheitliche Bild-/Video-Darstellung */
/*#hero .carousel-item .pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}*/

#hero .carousel-item .pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Overlay */
#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 35, 40, 0.3);
  z-index: 1;
}

/* Caption */
#hero .carousel-caption {
  top: 40%;
  bottom: auto;
  z-index: 2;
}

#hero h5 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero h5 span {
  color: var(--bs-primary);
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

/* CTA Button */
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  background: rgba(var(--bs-link-color), 0.7);
  color: white;
  border-top: 8px solid white;
  border-bottom: 8px solid white;
  transition: background 1s;
  animation-delay: 0.8s;
}

#hero .btn-get-started:hover {
  background: rgba(var(--bs-link-hover-color), 1);
  color: white;
}

/* Pfeile */
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(var(--bs-carousel_h1_span_color-rgb), 1);
}

/* Indikatoren */
#hero .carousel-indicators button {
  background-color: #fff;
  width: 40px;
  height: 4px;
  opacity: 0.6;
  border: none;
  border-radius: 50px;
  margin: 0 4px;
  transition: background-color 0.3s, opacity 0.3s;
  padding: 0;
}

#hero .carousel-indicators button.active {
  opacity: 1;
  background-color: var(--bs-primary);
}

/* Responsive */
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}













/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Parallax Header
--------------------------------------------------------------*/
#parallax_header {
  overflow: hidden;
  display: block;
  position: relative;
    margin-top: -80px;
} 
.parallax-image {
    background-position: 0px -100px;
    background-size: cover;
    width: 100%;
}
.parallax-image::after {
    content: '';
    position: absolute;
    left: 0; 
    top: 10px;
    width: 100%; 
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.045) 0%, rgba(0,0,0,0.82) 100%);
    /*background: radial-gradient(circle, var(--bs-body-color) 0%, var(--bs-body-color) 100%);*/
}
.parallax-after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.parallax-after svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}
.parallax-after .shape-fill {
    fill: var(--bs-body-bg);
}

/*--------------------------------------------------------------
# Agency Header
--------------------------------------------------------------*/
/* Transparente Start-Navigation */
/*.bg-primary,
.bg-dark,
.bg-light,
.bg-body-tertiary {
  color: #fff;
}

.bg-primary .nav-link,
.bg-dark .nav-link,
.bg-body-tertiary .nav-link {
  color: #fff;
}

.bg-primary .nav-link:hover,
.bg-dark .nav-link:hover,
.bg-body-tertiary .nav-link:hover {
  color: #fe821d;
}*/

.bg-primary {
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: #fff !important;
}
.bg-light {
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.bg-body-tertiary {
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: #fff !important;
}

/* Bei Scrollen: farbige Navigation */
.navbar-colored {
  background-color: #1f1f1f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Header-Hintergrund */
.agency-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -80px;
}

.agency-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.agency-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.agency-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.agency-hero p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.btn-get-started {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  background-color: #fe821d;
  border: none;
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-get-started:hover {
  background-color: #e57110;
}
