:root{
  /* Fonts */
  --ow-font-default:"OpenSans", system-ui, -apple-system, Arial;
  --ow-font-headline:"Merriweather", serif;
 

 /*Farben */
  --ow-color-primary: #fff108;    /*rgb(255,241,8)*/
  --ow-color-dark: #282828;       /*rgb(40,40,40)*/
  --ow-color-light: #fafafa;      /*rgb(250,250,250)*/
  --ow-color-white: #fff;
  --ow-color-light-bg: #f2f2f2;
  --ow-color-black: #000;

  --ow-color-overlay-home: rgba(40,40,40,0.8);
  --ow-text-dark-relief:
    0 1px 1px rgba(255,255,255,0.15),
    0 -1px 1px rgba(0,0,0,0.25);

}


.startseite {
  width: 100%;
  min-height: 100svh; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: var(--ow-color-dark);
 }

.startseite::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 70vw;
  background-color: var(--ow-color-overlay-home);
  z-index: 1;
  clip-path: polygon(
    0 0,
    100% 0,
    85% 100%,
    0 100%
  );
}

.startseitebox {
  position: relative;
  z-index: 2;
  width: 65vw;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  flex: 1; 
  display: flex;
  align-items: center;
}

.startseitebox .logoHome {
  width: 120px;
  height: auto;
}

.startseitebox .companyHome {
  margin-bottom: 1rem;
  color: var(--ow-color-white);
}

 .startseitebox p {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: var(--ow-color-white);
}

/* Mobile */
@media (max-width: 767.98px) { 
  .startseitebox {
    width: 100%;
  }
  .startseite::before {
    width: 100%;
    clip-path: none;
  }
}

/* Tablet */
@media (min-width: 768px) { 
   .startseitebox {
    width: 75vw;
  }
  .startseite::before {
    width: 77vw;
  }
}

/* Desktop */
@media (min-width: 992px) { 
    .startseitebox {
    width: 70vw;
  }
  .startseite::before {
    width: 70vw;
  }
}

/* Desktop */
@media (min-width: 1400px) { 
    .startseitebox {
    width: 75vw;
  }
  .startseite::before {
    width: 80vw;
  }
}

/* Ultra-wide */
@media (min-width: 1700px) { 
  .startseitebox,
  .startseite::before {
    width: 65vw;
  }
}

.startseite h1, 
.startseite h2,
.startseite h3,
.startseite h4, 
.startseite h5 {
  position: relative;
  color: var(--ow-color-white); 
  margin-bottom: 0rem;
}
.startseite h1::before,
.startseite h2::before,
.startseite h3::before,
.startseite h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 0.3em;
  height: 0.9em;
  background: var(--ow-color-primary); 
}

/*----- Button ----- */
.startseite .btn-ow-light {
  color: var(--ow-color-dark);
  margin-left: 1.8rem;
}

/*----- Footer-bottom -----*/
.footer-bottom-start {
  background-color: transparent;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--ow-color-black);
}

.footer-bottom-start p {
  margin: 0;
  color: inherit;
  text-shadow: var(--ow-text-dark-relief);
}

.footer-bottom-start .nav {
  gap: 0.5rem;
}

.footer-bottom-start .nav-link {
  position: relative;
  font-family: var(--ow-font-default);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ow-color-black);
  padding-bottom: 0.25rem;
  text-decoration: none;
  text-shadow: var(--ow-text-dark-relief);
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.footer-bottom-start .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.25rem;
  background-color: var(--ow-color-black);
  transition: width 0.3s ease;
}

.footer-bottom-start .nav-link:hover::after {
  width: 100%;
}

.footer-bottom-start .bi,
.footer-bottom-start .logoutButton .bi {
  color: var(--ow-color-black);
}

.footer-bottom-start nav,
.footer-bottom-start .footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .footer-bottom-start {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .footer-bottom-start {
    flex-direction: row;
  }
}

.footer-bottom-start .bi-arrow-up-circle-fill {
  color: var(--ow-color-primary);
}

.footer-bottom-start .logoutButton .icon-color-ow-dark{
  color: var(--ow-color-black);
}

.footer-bottom-start .logoutButton .bi::before {
  font-size: 1.6rem;
  margin-top: .35rem;
  margin-left: 1rem;
  margin-right: 0.5rem;
  text-shadow: var(--ow-text-dark-relief);
}

/*-----Navigation -----*/
.startseite .navbar {
  position: relative;
  z-index: 10;
}
.startseite .darkNavbar {
  background-color: transparent ;
  border-bottom: none;
}