/* Kann nach Fertigstellung entfernt werden */
.video-placeholder {
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.video-wrapper {
  position: relative;
}




/* Text */
p {
  text-align: justify;
}

.text-outlook :where(p, li) {
  text-align: justify;
  margin: 0.25em 0; 
}

/* Links */
.link {
  color: #094030;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.link:hover {
  color: #127d5e; 
}


/* Navigation Bar */
.navbar {
  background-color: #094030;
  padding: 0px;
}

.navbar-brand img {
  max-height: 80px;
  width: auto;
}

/* ClimeApp-Button */
.climeapp-button {
  display: inline-block;
  border-radius: 10px;
  padding: 10px;
  background-color: #094030;
  text-decoration: none;
  font-weight: bold;
  color: white;
}

.climeapp-button:hover {
  background-color: #127d5e;
}

/* Videos */
.video-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background: #000; 
  aspect-ratio: 16 / 9; 
}

.video-wrapper video {
  width: 100%;
  height: 100%;              
  display: block;
  object-fit: cover;       
}
