/* HEADER */
header * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  height: 120px;
  width: 100%;
  position: fixed;
  z-index: 800;
}
.sitelogo {
  width: 7rem;
  height: auto;
  margin: 0;
  padding: 1rem;
  background-color: var(--bs-primary);
  position: relative;
  z-index: 999;
}
.head {
  position: absolute;
  top: 0;
  left: 7rem;
  z-index: 1001;
  width: 7rem;
  height: 7rem;
  background: #ff922f;
}
.head .tile {
  height: 100%;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.head .tile.socialmedia {
  color: var(--bs-primary);
  font-size: 25px;
  text-align: center;
  line-height: 25px !important;
  position: relative;
  top: 10px;
}
.head .tile.socialmedia:hover {
  color: var(--bs-secondary);
}
header.clicked .head .tile.socialmedia {
  color: white;
}
.head .ham {
  cursor: pointer;
  background-color: transparent;
}
.hicon {
  position: relative;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hicon .line {
  height: 2px;
  width: 50px;
  background-color: var(--bs-white);
  margin-top: 7px;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.hicon .line.one {
  margin-top: 0;
}

.hicon:hover .line {
  background-color: var(--bs-secondary);
}

header.clicked .ham .line {
  background-color: white;
}
header.clicked .ham .line.one {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: 5px;
}
header.clicked .ham .line.two {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-top: -2px;
}
header.clicked .ham .line.three {
  opacity: 0;
}

/* NAVIGATION */
.nav-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--bs-primary);
  padding: 0 7rem 5rem 7rem;
}

.nav-modal .left {
  gap: 7rem;
}

.social {
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.socialmedia {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  color: var(--bs-white);
  border: 1px solid var(--bs-white);
  position: relative;
  transition: color 300ms;
}

.socialmedia i {
  font-size: 1rem;
}

.socialmedia:hover .social-bg {
  transform: scale(1);
}

.socialmedia:hover i {
  color: var(--bs-primary);
}

.social-bg {
  transform: scale(0);
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--bs-white);
  transition: transform 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.container-desc-wrap.orange-teaser {
  width: 440px;
}

.container-img-wrap {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 800px;
  z-index: -1;
}

.container-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

nav {
  color: white;
}
nav a {
  color: white;
  text-decoration: none;
  font-family: var(--bs-font-headline);
  font-size: 30px;
}
nav span {
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
}
.main-nav ul li {
  list-style: none;
  position: relative;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

nav ul li.notselected a {
  opacity: 0.5;
}
nav ul li.selected ul li a {
  opacity: 1;
}

/* Grundlegende Stile für den unscharfen Hintergrund */
.blur-background {
  filter: blur(15px);
  transition: filter 0.3s ease;
}
.blur-effect {
  filter: blur(10px);
}
.blur-header {
  background: rgba(218, 224, 232, 0.7);
  z-index: 1000;
  position: relative;
}

@media (max-width: 1599.98px) {
  .nav-modal {
    padding: 0 3rem 5rem 3rem;
  }
  .container-img-wrap {
    width: 600px;
  }
  .nav-modal .left {
    gap: 4rem;
  }
  .nav-modal .orange-teaser p {
    font-size: 1.575rem;
    line-height: 2.275rem;
  }
  .nav-modal nav a {
    font-size: 25px;
  }
}

@media (max-width: 1299.98px) {
  .container-img-wrap {
    width: 500px;
  }
  .nav-modal nav a {
    font-size: 22px;
  }
  .container-desc-wrap.orange-teaser {
    width: 340px;
  }
  .nav-modal .orange-teaser p {
    font-size: 1.275rem;
    line-height: 2.075rem;
  }
}

@media (max-width: 1199.98px) {
  .nav-modal {
    padding: 0 2rem 2rem 2rem;
  }
  .sitelogo {
    width: 5rem;
  }
  .head {
    width: 5rem;
    height: 5rem;
    left: 5rem;
  }
  .hicon .line {
    width: 40px;
  }
  .social {
    padding: 0;
  }
  .nav-modal .left {
    gap: 2rem;
  }
  .container-img-wrap {
    visibility: hidden;
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
  .nav-modal nav a {
    font-size: 20px;
  }
  .sitelogo {
    width: 4rem;
    padding: 0.5rem;
  }
  .head {
    width: 4rem;
    height: 4rem;
    left: 4rem;
  }
}

@media (max-width: 575.98px) {
}


