html {
  height: 100%;
  width: 100%;
  background-image: url('../static/wallpaper/Desktop.avif');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  background-attachment: fixed;
  margin: 0;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #141414;
}



body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  font-family: 'PathwayGothicOne', 'Arimo-Regular';
  color: #ececec;
  box-sizing: border-box;
  flex-direction: column;
  overflow: auto;
  scrollbar-width: 0.75rem;
  scrollbar-color: rgba(225, 109, 96, 0.35) transparent;
}
body::-webkit-scrollbar {
  width: 0.75rem;
}
body::-webkit-scrollbar-track {
  background: rgba(225, 109, 96, 0.15);
}
body::-webkit-scrollbar-thumb {
  background: rgba(225, 109, 96, 0.3);
  border-radius: 1rem;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(109, 6, 6, 0.55);
}



.mobile-wallpaper {
  display: none;
}



@media (max-width: 1023px), (orientation: portrait) {
  html {
    background-image: none !important;
  }
  .snap-container {
    position: relative;
    height: 75vh;
    height: 75dvh;
    max-height: 75vh;
    max-height: 75dvh;
    width: 100vw;
    margin: 0;
    border-radius: 0.25rem;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    touch-action: pan-y;
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-wallpaper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background-color: #141414;
    background-image: url('../static/wallpaper/Mobile.avif');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
  }
}



.main-wrapper {
  min-height: auto;
}



.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}



a, button, img {
  -webkit-tap-highlight-color: transparent;
}



p {
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
  color: white;
  line-height: 1.5;
  font-weight: 400;
}



/* Zoom Effekt */
@keyframes ZoomZoom1 {
  0% {
    filter: blur(0px);
    opacity: 0;
  }
  33% {
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.zoom-in-main {
  animation: ZoomZoom1 2.5s ease-out forwards;
}



/* Zoom Effekt Sub */
@keyframes ZoomZoom2 {
  0% {
    filter: blur(0px);
    opacity: 0;
  }
  33% {
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.zoom-in-sub {
  animation: ZoomZoom2 3.0s ease-out forwards;
}



/* Zoom Effekt Pics Portfolio */
@keyframes ZoomZoom3 {
  0% {
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.zoom-in-pics {
  animation: ZoomZoom3 2.5s ease forwards;
}
.zoom-in-pics img {
    cursor: pointer;
}



/* Zoom Effekt Seite 404 */
@keyframes ZoomZoom4 {
  0% {
    filter: blur(0px);
    opacity: 0;
  }
  33% {
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.zoom-in-404 {
  animation: ZoomZoom4 1.5s ease-out forwards;
}



.topbar {
  display: flex;
  position: relative;
  margin: 4vh 0 !important;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(
    30deg,
    rgba(229, 225, 225, 0.0),
    rgba(228, 220, 210, 0.4),
    rgba(194, 191, 191, 0.7),
    rgba(222, 219, 222, 0.4),
    rgba(235, 164, 155, 0.1)
  );
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem 0.1rem rgba(2, 0, 23, 0.5);
  height: 4vh !important;
  overflow: visible;
  z-index: 1000;
}
@media (max-width: 768px) {
  .topbar {
    border-radius: 0.15rem;
    height: 3vh !important;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .topbar {
    border-radius: 0.15rem;
    height: 3.5vh !important;
  }
}
@media (orientation: landscape) and (max-height: 500px) and (min-aspect-ratio: 2/1) {
  .topbar {
    display: none !important;
  }
}
.burger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.burger-icon img.icon {
  display: block;
  height: 75%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 0.1rem black);
  transition: transform 0.6s ease;
}
.menu {
  display: flex;
  position: absolute;
  top: 7.5vh;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    30deg,
    rgba(229, 225, 225, 0.9),
    rgba(228, 220, 210, 0.95),
    rgba(194, 191, 191),
    rgba(222, 219, 222, 0.95),
    rgba(227, 227, 227, 0.9)
  );
  box-shadow: 0.3rem 0 1.2rem 0.3rem rgba(2, 0, 23, 0.5);
  padding: 0.5rem 4rem;
  min-width: 12rem;
  border-radius: 0.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1.5s ease, opacity 1.0s ease;
  list-style: none;
  z-index: 999;
}
@media (max-width: 768px) {
  .menu {
    min-width: 8rem;
    max-width: 10rem;
  }
}
.menu.visible {
  max-height: 60vh;
  opacity: 1;
}
.menu li {
  width: 100%;
}
.menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arimo-Regular';
  color: #101010;
  text-shadow: 0 0.05rem rgb(3, 0, 6, 0.2);
  text-decoration: none;
  font-size: 1rem;
  border-radius: 0.5rem;
  padding: 1rem 0;
  width: 100%;
  transition: background-color 0.4s ease;
}
.menu li:last-child a {
  border-bottom: none;
}
.menu li a:hover {
  background-color: rgba(54, 54, 54, 0.6);
  color: rgb(212, 209, 209);
  transition: background-color 0.8s ease;
}
.menu li a:active {
  background-color: rgba(188, 39, 39, 0.7);
  transition: background-color 0.3s ease;
}
.menu a.active {
  color: rgb(149, 145, 145);
  text-shadow: none;
  pointer-events: none;
}
.menu a:focus {
  outline: none;
}
/*Rahmen für Menu für Tastatur-Nutzer*/
.menu a:focus-visible {
  outline: 1px solid rgba(54, 54, 54, 0.6);
}
.emblem-wrapper {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  width: 8vh !important;
  height: 8vh !important;
  border-radius: 50%;
  background: linear-gradient(
    120deg,
    rgba(228, 220, 210, 0.6),
    rgba(212, 209, 209, 0.3),
    rgba(222, 219, 222, 0.6)
  );
  box-shadow: 0 1.2rem 1.2rem rgba(2, 0, 23, 0.5);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent !important;
}
.github-icon {
  width: 16px;
  height: 16px;
  vertical-align: -0.125em;
  margin-right: 0.5em;
}
.language-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0;
  font-family: 'Arimo-Regular';
  font-size: 0.85rem;
  color: #101010;
}
@media (max-width: 380px) {
  .language-switch {
    padding: 0.3rem 0;
  }
}
.lang-globe {
  line-height: 1;
}
.lang-option {
  cursor: pointer;
  color: rgba(16, 16, 16, 0.7);
  font-variant-caps: small-caps;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-family: 'Arimo-Bold';
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.lang-option:hover {
  background-color: rgba(54, 54, 54, 0.5);
  color: white;
}
.lang-option.active {
  color: rgba(188, 39, 39, 0.6);
  font-family: 'Arimo-Bold';
  text-shadow: none;
  pointer-events: none;
}



.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    30deg,
    rgba(54, 54, 54, 0.5),
    rgba(34, 34, 34, 0.6),
    rgba(24, 24, 24, 0.7),
    rgba(34, 34, 34, 0.6),
    rgba(54, 54, 54, 0.5)
  );
  box-shadow: 0.1rem 0.1rem 0.5rem 0.25rem rgba(242, 242, 242, 0.4);
  border-radius: 0.25rem;
  width: 66%;
  margin: 4vh auto 1rem auto;
  padding: 0.1rem 2rem 1.25rem 2rem;
}
@media (max-width: 768px) {
  .contact-form {
    width: 94%;
    padding: 0 0.5rem 1.5rem 0.5rem;
  }
}
.contact-wrapper {
  width: 100%;
  min-height: 66vh;
}
.contact-form h2 {
  font-size: 2rem;
  color: rgba(194, 191, 191);
  letter-spacing: 0.05rem;
  text-shadow: 0.1rem 0.12rem 0.1rem rgb(0, 0, 0);
}
.contact-form label {
  display: block;
  font-family: 'Arimo-Bold';
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: rgba(248, 248, 248, 0.9);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.4rem;
  margin-bottom: 1.25rem;
  background-color: rgba(248, 248, 248, 0.9);
  border: 0.1rem solid transparent;
  border-radius: 0.1rem;
  box-sizing: border-box;
  font-family: 'Arimo-Regular';
  transition: 1.0s ease-out;
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background-color: rgba(255, 255, 255);
  transition: 0.5s ease-out;
}
.contact-form textarea {
  min-height: 20vh;
  max-height: 25vh;
}
#counter {
  margin: -0.25rem 0 0.5rem 0;
  font-family: 'Arimo-Regular';
  font-size: 0.75rem;
}
.counter-normal {
  color: rgba(194, 191, 191);
}
@media (max-width: 768px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.85rem;
    padding: 0.3rem;
  }
}
.counter-warning {
  color: rgb(212, 79, 79);
}
.counter-error {
  color: rgb(192, 29, 29);
}
.contact-form button {
  background-color: rgba(194, 191, 191, 0.8);
  color: rgba(14, 14, 14, 0.95);
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Arimo-SemiBold';
}
.contact-form button:hover {
  opacity: 0.8;
}
.contact-form button:active {
  transform: translateY(0.1rem);
}
.contact-form button.wait {
  background-color: rgba(237, 211, 12, 0.9);
  transition: background-color 0.3s ease;
}
.contact-form button.sent {
  background-color: rgba(105, 197, 66, 0.9);
  transition: background-color 0.3s ease;
}
.contact-form button.error {
  background-color: rgba(188, 39, 39, 0.9);
  transition: background-color 0.3s ease;
}
.contact-form button:disabled {
  pointer-events: none;
}
.contact-names {
    display: flex;
    gap: 2rem;
}
.contact-names div {
    flex: 1;
}



.portfolio-kacheln {
  display: grid;
  height: 100%;
  width: auto;
  max-width: 100%;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 6rem;
  margin: 0 6rem 5rem 6rem;
}
@media (max-width: 1199px), (orientation: portrait) {
  .portfolio-kacheln {
    grid-template-columns: repeat(1, 1fr);
    height: 75vh;
    max-height: 75vh;
    overflow: visible;
    align-items: start;
    scroll-snap-type: y mandatory;
    margin: 0 auto;
    gap: 2rem;
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .portfolio-kacheln {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0.5rem;
    gap: 3rem;
  }
}
.card {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    30deg,
    rgba(229, 225, 225, 0.1),
    rgba(228, 220, 210, 0.25),
    rgba(194, 191, 191, 0.3),
    rgba(222, 219, 222, 0.25),
    rgba(235, 164, 155, 0.1)
  );
  box-shadow: 0.25rem 0 0.75rem 0.25rem rgba(2, 0, 23, 0.5);
  border-radius: 0.5rem;
  box-sizing: border-box;
  padding: 1rem 1rem 0.6rem 1rem;
  text-align: center;
  overflow: auto;
}
@media (max-width: 1199px), (orientation: portrait) {
  .card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    align-items: start;
    justify-content: center;
    height: 75vh;
    height: 75dvh;
    max-height: 75vh;
    max-height: 75dvh;
    box-shadow: 0 0.5rem 0.75rem 0.75rem rgba(2, 0, 23, 0.4);
  }
}
@media (hover: hover) {
  .card:hover {
    background: linear-gradient(
      30deg,
      rgba(229, 225, 225, 0.15),
      rgba(228, 220, 210, 0.3),
      rgba(194, 191, 191, 0.3),
      rgba(222, 219, 222, 0.3),
      rgba(235, 164, 155, 0.15)
    );
    box-shadow: 0.25rem 0 0.75rem 0.5rem rgba(2, 0, 23, 0.8);
    transition-duration: 0.9s;
  }
}
.card:active {
  background: linear-gradient(
    30deg,
    rgba(0, 0, 0, 0.5),
    rgba(52, 42, 54, 0.4),
    rgba(186, 45, 45, 0.4),
    rgba(0, 0, 0, 0.5)
  );
  box-shadow: 0.25rem 0 0.75rem 0.25rem rgba(188, 39, 39, 0.3);
  border-radius: 0.25rem;
  transition-duration: 0.2s;
}
.card img {
  width: 90%;
  height: auto;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.1rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .card img {
    width: 86%;
  }
}
@media (max-width: 767px) {
  .card img {
    width: 96%;
  }
}
@media (aspect-ratio: 3/4) {
  .card img {
    width: 75% !important;
  }
}

.portfolio-gallery {
  display: none;
}

.trennstrich-EJApp {
  border-top: 0.1rem solid rgba(215, 186, 69, 0.7);
  margin: auto;
  padding-top: 0.2rem;
  border-radius: 25%;
  width: 50%;
}
.trennstrich-WApp {
  border-top: 0.1rem solid rgba(14, 36, 69, 0.8);
  margin: auto;
  padding-top: 0.2rem;
  border-radius: 25%;
  width: 50%;
}
.trennstrich-PGApp {
  border-top: 0.1rem solid rgba(156, 89, 211, 0.8);
  margin: auto;
  padding-top: 0.2rem;
  border-radius: 25%;
  width: 50%;
}
.trennstrich-W24App {
  border-top: 0.1rem solid rgba(4, 4, 4, 0.8);
  margin: auto;
  padding-top: 0.2rem;
  border-radius: 25%;
  width: 50%;
}
.trennstrich-SpieleApp {
  border-top: 0.1rem solid rgba(186, 45, 45, 0.8);
  margin: auto;
  padding-top: 0.2rem;
  border-radius: 25%;
  width: 50%;
}
@media (max-width: 1199px) {
  .trennstrich-EJApp, 
  .trennstrich-PGApp, 
  .trennstrich-SpieleApp, 
  .trennstrich-W24App, 
  .trennstrich-WApp {
    width: 60%;
  }
}



.fade-in {
  filter: blur(2px);
  opacity: 0;
  will-change: filter, opacity;
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.fade-in.visible {
  filter: blur(0);
  opacity: 1;
  transition: filter 1.0s ease, opacity 1.0s ease;
}
.fade-out {
  filter: blur(0);
  opacity: 1;
  will-change: filter, opacity;
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.fade-out.start {
  filter: blur(2px);
  opacity: 0;
}
.preload-hidden {
  visibility: hidden;
}



.swiper {
  position: relative;
  max-width: 75%;
  overflow: hidden;
}
@media(max-width: 768px) {
  .swiper {
    max-width: 76% !important;
  }
}

.swiper.HomeSwiper {
  display: flex;
  position: relative;
  width: 75vw;
  height: 72vh;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 5vh;
  background: linear-gradient(
    30deg,
    rgba(229, 225, 225, 0.1),
    rgba(228, 220, 210, 0.4),
    rgba(194, 191, 191, 0.6),
    rgba(222, 219, 222, 0.4),
    rgba(235, 164, 155, 0.1)
  );
  box-shadow: 0.5rem 0 1rem 0.5rem rgba(2, 0, 23, 0.5);
  border-radius: 0.25rem;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y pinch-zoom;
  touch-action: pan-x pinch-zoom;
}
@media (max-width: 768px) {
  .swiper.HomeSwiper {
    width: 76vw;
    margin-top: 3vh;
    overscroll-behavior: contain;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .swiper.HomeSwiper {
    width: 76vw;
    margin-top: 4vh;
    overscroll-behavior: contain;
  }
}
.swiper-wrapper.HomeWrapper {
  position: relative;
  transition-property: transform;
  box-sizing: border-box;
}
.swiper-slide.HomeSlide {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  justify-content: flex-start !important;
  text-align: center;
  align-items: center;
  overflow: auto;
  scroll-behavior: smooth;
}
.swiper.HomeSwiper .swiper-pagination {
  display: flex;
  position: absolute;
  margin-top: auto;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  justify-content: center;
  z-index: 1000;
  background: transparent;
}
.swiper.HomeSwiper .swiper-pagination-bullet {
  width: 2rem !important;
  height: 1rem !important;
  margin: 0 0.75rem !important;
  background-color: #363636 !important;
  border: 1px solid rgba(242, 242, 242, 0.5) !important;
  border-radius: 50% !important;
  transition: all 0.7s ease;
}
@media (max-width: 768px) {
  .swiper.HomeSwiper .swiper-pagination-bullet {
    border: 1px solid rgba(242, 242, 242, 0.4) !important;
    margin: 0 0.5rem !important;
    -webkit-tap-highlight-color: transparent;
  }
}
.swiper.HomeSwiper .swiper-pagination-bullet:hover {
  background-color: #0d0d0d !important;
  transition: all 0.7s ease;
}



.swiper.MiscSwiper {
  display: flex;
  position: relative;
  width: 70vw !important;
  height: 100%;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-top: 5vh;
  margin-bottom: 4rem;
  background: linear-gradient(
    30deg,
    rgba(229, 225, 225, 0.1),
    rgba(228, 220, 210, 0.4),
    rgba(95, 94, 94, 0.6),
    rgba(222, 219, 222, 0.4),
    rgba(235, 164, 155, 0.1)
  );
  box-shadow: 0.5rem 0 1rem 0.5rem rgba(2, 0, 23, 0.5);
  border-radius: 0.25rem;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y pinch-zoom;
  touch-action: pan-x pinch-zoom;
}
@media (max-width: 768px) {
  .swiper.MiscSwiper {
    margin-top: 3vh;
    width: 76vw !important;
    height: 72vh !important;
    overscroll-behavior: contain;
    margin-bottom: 0;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .swiper.MiscSwiper {
    margin-top: 4vh;
    width: 76vw !important;
    height: 72vh !important;
    overscroll-behavior: contain;
    margin-bottom: 0;
  }
}
.swiper-wrapper.MiscWrapper {
  position: relative;
  transition-property: transform;
  box-sizing: border-box;
}
.swiper-slide.MiscSlide {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-size: clamp(1rem, 1.15vw, 1.4rem);
  height: 100%;
  width: 100%;
  padding: 0.25rem 0;
  justify-content: flex-start !important;
  text-align: center;
  align-items: center;
  overflow: auto;
  scroll-behavior: smooth;
}



.swiper-slide.MiscSlide::-webkit-scrollbar,
.swiper-slide.HomeSlide::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 1.5rem 0.25rem 0.25rem 1.5rem;
}
@media (max-width: 1199px) {
  .swiper-slide.MiscSlide::-webkit-scrollbar,
  .swiper-slide.HomeSlide::-webkit-scrollbar {
    width: 0.2rem;
  }
}
.swiper-slide.MiscSlide::-webkit-scrollbar-track,
.swiper-slide.HomeSlide::-webkit-scrollbar-track {
  background: rgba(225, 109, 96, 0.2);
  border-radius: 1.5rem 0.25rem 0.25rem 1.5rem;
}
.swiper-slide.MiscSlide::-webkit-scrollbar-thumb,
.swiper-slide.HomeSlide::-webkit-scrollbar-thumb {
  background: rgba(225, 109, 96, 0.35);
  border-radius: 1.5rem 0.25rem 0.25rem 0.25rem;
}
.swiper-slide.MiscSlide::-webkit-scrollbar-thumb:hover,
.swiper-slide.HomeSlide::-webkit-scrollbar-thumb:hover {
  background: rgba(225, 109, 96, 0.75);
  border-radius: 2rem 0.25rem 0.25rem 2rem;
}



.nebeneinander_hero {
  display: flex;
  height: 100%;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  gap: 2.5rem;
}
@media (max-width: 380px) {
  .nebeneinander_hero {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    text-align: center;
  }
}
@media (max-width: 768px), (orientation: portrait) {
  .nebeneinander_hero {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem;
    text-align: center;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .nebeneinander_hero {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.5rem;
    text-align: center;
  }
}



.home-hero {
  text-align: center;
  color: white;
  margin: 1rem 0;
  font-size: clamp(3rem, 4rem, 5rem);
  text-shadow: 0 0.25rem 1rem rgb(3, 0, 6);
}
@media (max-width: 767px) {
  .home-hero {
    font-size: clamp(2.5rem, 3rem, 4rem);
    margin: 0.3rem 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-hero {
    font-size: clamp(3.5rem, 4.5rem, 5.5rem);
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .home-hero {
    font-size: clamp(3rem, 3.5rem, 4rem);
  }
}



.nebeneinander_hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .nebeneinander_hero-left {
    gap: 0.75rem;
  }
}



.portrait-zoom {
  background: linear-gradient(
    to right,
    rgba(54, 54, 54, 0.3) 0%,
    rgba(48, 47, 47, 0.4) 10%,
    rgba(37, 36, 36, 0.5) 66%,
    rgba(26, 25, 25, 0.5) 100%
    );
  box-shadow: 1rem 1rem 1rem 1rem rgba(79, 73, 73, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  padding: 0.65rem;
  max-width: 66%;
  max-height: 66%;
  animation: PicZoom 2.0s ease-in;
  transform-origin: 20% 50%;
}
@media (max-width: 768px) {
  .portrait-zoom {
    margin-bottom: 2.5rem;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .portrait-zoom {
    margin-bottom: 1rem;
  }
}
@keyframes PicZoom {
  0% {
    transform: scale(0.0);
    opacity: 0;
  }
  40% {
    transform: scale(0.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.0);
    opacity: 1;
  }
}



.lang-option-startpage {
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Arimo-Regular';
  font-variant-caps: small-caps;
  padding: 0.5rem;
  color: rgba(234, 234, 234, 0.8);
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.lang-option-startpage:hover {
  background-color: rgba(54, 54, 54, 0.5);
  color: rgba(248, 248, 248, 0.9);
}
.lang-option-startpage.active {
  color: rgba(54, 54, 54, 0.9);
  font-family: 'Arimo-Bold';
  pointer-events: none;
}
.lang-flag-startpage {
  height: 0.75em;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  padding-right: 0.1em;
}
@media (hover: none) {
  .lang-option-startpage:hover,
  .lang-option-startpage.focus {
    background-color: none;
    border-radius: 0.5rem;
    -webkit-tap-highlight-color: rgba(104, 44, 178, 0.1);
  }
}



.nebeneinander_home {
  flex-direction: row;
  margin: 2.5rem 0 2rem 0;
}
@media (max-width: 1199px) {
  .nebeneinander_home {
    flex-direction: column;
    margin: 1rem 0 1rem 0;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .nebeneinander_home {
    flex-direction: row !important;
    margin: 1rem 0 1rem 0 !important;
  }
}
.zert-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: zoom-in;
    gap: 2rem;
}
@media (max-width: 1199px) {
  .zert-container {
    flex-direction: column;
    gap: 0;
  }
}
@media (orientation: landscape) and (max-height: 600px) {
  .zert-container {
    flex-direction: row !important;
    gap: 2rem;
  }
}
.zertifikat {
  height: 20vh;
  width: auto;
  object-fit: cover;
  border-width: 0.5rem;
  border-style: ridge;
  border-color: rgba(54, 54, 54, 0.8);
  border-radius: 10%;
  transition-duration: 0.9s;
  cursor: pointer;
  align-items: center;
  overflow: auto;
}
.zertifikat:hover {
  transform: scale(1.07);
  transition-duration: 0.9s;
}
.zertifikat-links {
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .zertifikat {
    margin-bottom: 1rem;
    height: auto;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .zertifikat {
    margin-bottom: 1rem;
    height: auto;
    max-width: 60%;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .zertifikat {
    height: 50vh;
    margin-bottom: 1rem;
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .zertifikat {
    height: 35vh;
    margin-bottom: 1rem;
  }
}



.home-header {
  color: white;
  margin-top: 2.5rem;
  font-size: clamp(2rem, 2.5rem, 3rem);
  text-shadow: 0 0.25rem 1rem rgb(3, 0, 6);
}
@media (max-width: 768px) {
  .home-header {
    font-size: clamp(2rem, 2rem, 2.5rem);
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .home-header {
    margin-top: 1.5rem;
  }
}



.home-text {
  color: white;
  text-align: center;
  max-width: 58%;
}
@media (max-width: 768px) {
  .home-text {
    max-width: 90%;
  }
}
.home-text p {
  font-size: clamp(1.2rem, 1.35rem, 1.5rem);
  text-shadow: 0 0.1rem 0.2rem rgb(0, 0, 0);
  margin-bottom: 2rem;
  letter-spacing: 0.03rem;
}
.home_text_italic {
  font-size: clamp(1.1rem, 1.25rem, 1.4rem);
  font-family: 'Arimo-Italic';
}
@media (max-width: 768px) {
  .home-text p:last-child {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .home-text p {
    font-size: clamp(1.1rem, 1.2rem, 1.3rem);
    margin-bottom: 2.5rem;
  }
  .home_text_italic {
    font-size: clamp(1.05rem, 1.15rem, 1.25rem);
    font-family: 'Arimo-Italic';
  }
}
.home-stack {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 1rem 0;
  font-size: 1rem;
  max-width: 75%;
}
@media (max-width: 1199px) {
  .home-stack {
    gap: 0.75em;
    margin: 0.75rem 0 2.5rem 0;
  }
}
.home-stack span {
  background: rgba(32, 32, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: clamp(1rem, 1.1rem, 1.2rem);
  text-shadow: 0 0.1rem 0.1rem rgb(3, 0, 6);
  color: #eeeeee;
  backdrop-filter: blur(2px);
}
.home-stack span:hover {
  background: rgba(32, 32, 32, 0.9);
}
@media (max-width: 1199px) {
  .home-stack span {
    text-shadow: 0 0.05rem 0.1rem rgb(3, 0, 6);
  }
}



.portfolio-schrift {
  text-align: center;
  margin: 2rem 0;
  font-size: clamp(3.1rem, 3.15rem, 3.2rem);
  background: linear-gradient(
    90deg, 
    rgba(170, 170, 170),
    rgba(255, 255, 255),
    rgba(170, 170, 170)
  );
  background-clip: text; 
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 0.25rem rgba(3, 0, 6, 0.5);
}
@media (max-width: 380px) {
  .portfolio-schrift {
    margin: 1rem 0;
    font-size: clamp(2rem, 2rem, 2.25rem);
  }
}
@media (min-width: 381px) and (max-width: 767px) {
  .portfolio-schrift {
    margin: 1.5rem 0 1rem 0;
    font-size: clamp(2rem, 2.3rem, 2.6rem);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .portfolio-schrift {
    font-size: clamp(3rem, 3.5rem, 4rem);
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .portfolio-schrift {
    font-size: clamp(3.5rem, 4rem, 4.5rem);
  }
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .portfolio-schrift {
    display: none;
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .portfolio-schrift {
    margin: 1.5rem 0 1rem 0;
    font-size: clamp(2rem, 2.3rem, 2.6rem);
  }
}
.portfolio-sw-banner {
  color: rgba(242, 242, 242, 0.95);
  letter-spacing: 0.03rem;
  font-size: 1.6rem;
  padding-bottom: 0.1em;
  text-shadow: 0 0.2rem 0.2rem rgb(3, 0, 6, 0.9);
}
@media (min-width: 768px) and (max-width: 900px) {
  .portfolio-sw-banner {
    font-size: 2rem;
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 901px) and (max-width: 1023px) {
  .portfolio-sw-banner {
    font-size: 2.2rem;
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .portfolio-sw-banner {
    font-size: 2.4rem;
    padding-bottom: 0.5rem;
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .portfolio-sw-banner {
    font-size: 1.6rem;
  }
}
.portfolio-stack {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-shadow: 0 1px 1px rgba(3, 0, 6);
  list-style: none;
  gap: 1rem;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
@media (max-width: 380px) {
  .portfolio-stack {
    gap: 0.6rem;
    font-size: 0.8rem;
  }
}
@media (min-width: 381px) and (max-width: 767px) {
  .portfolio-stack {
    gap: 0.75rem;
    font-size: 0.9rem;
  }
}
.portfolio-stack span {
  background: rgba(32, 32, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: rgba(242, 242, 242, 0.9);
  backdrop-filter: blur(2px);
}
@media (min-width: 768px) and (max-width: 1400px) {
  .portfolio-stack span {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px), (orientation: landscape) and (max-height: 800px) {
  .portfolio-stack span {
    font-size: 0.85rem;
  }
}
.portfolio-stack span:hover {
  background: rgba(22, 22, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.portfolio-svg {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  background: rgba(32, 32, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.15rem 0.75rem;
  border-radius: 0.5rem;
  fill: rgba(91, 186, 69, 0.9);
  vertical-align: middle;
  transition: background 0.2s ease, fill 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 380px), (orientation: landscape) and (max-height: 600px) {
  .portfolio-svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .portfolio-svg {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }
}
@media (min-width: 1023px) and (max-width: 1199px) {
  .portfolio-svg {
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
  }
}

@media (hover: hover) {
  .portfolio-svg:hover {
    transform: scale(1.1);
    background: rgba(22, 22, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    fill: rgba(91, 186, 69);
  }
}

.portfolio-svg:active {
  background: rgba(188, 39, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  fill: rgba(242, 242, 242, 0.9);
  transform: scale(0.9);
}



.misc-header {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  color: rgba(236, 236, 236);
  font-size: clamp(3rem, 3rem, 3.5rem);
  text-shadow: 0 0.25rem 1rem rgb(3, 0, 6);
}
@media (max-width: 768px) {
  .misc-header {
    font-size: clamp(2rem, 2rem, 2.25rem);
    width: 98%;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .misc-header {
    font-size: clamp(2.25rem, 2.5rem, 3rem);
    width: 98%;
  }
}
.misc-sub1 {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  text-align: center;
  color: white;
  line-height: 1.5rem;
  letter-spacing: 0.03rem;
  text-shadow: 0 0.1rem 0.4rem rgb(3, 0, 6);
}
.misc-sub2 {
  margin: 0.25vh 0 0.5vh;
  text-align: center;
  font-size: clamp(1.15rem, 1.3rem, 1.4rem);
  letter-spacing: 0.03rem;
  color: rgba(200, 200, 200, 0.9);
  text-shadow: 0 0.2rem 0.5rem rgb(54, 54, 54);
}
.misc-sub3 {
  margin: 0 auto;
  color: white;
  font-size: clamp(1.1rem, 1.2rem, 1.3rem);
  text-shadow: 0 0.1rem 0.15rem rgb(3, 0, 6);
  letter-spacing: 0.03rem;
  max-width: 80%;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .misc-sub3 {
    max-width: 80%;
  }
}



.notfound-body {
  flex: 1;
  border-radius: 0.25rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
  justify-content: center;
  width: 57.5%;
}
@media (max-width: 768px) {
  .notfound-body {
    margin-top: 1rem;
    width: 80%;
  }
}
.notfound-header {
  text-align: center;
  padding-bottom: 0.25rem;
  font-size: clamp(3rem, 3.75rem, 4.5rem);
  background: linear-gradient(
    90deg, 
    rgba(170, 170, 170),
    rgba(255, 255, 255),
    rgba(170, 170, 170)
  );
  background-clip: text; 
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 0.25rem rgba(3, 0, 6, 0.5);
}
.homeButton404 {
  background-color: rgba(54, 54, 54, 0.7);
  border: 1px solid rgba(242, 242, 242, 0.5);
  color: white;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  margin: 4rem 0 0 0;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.homeButton404:hover {
  background-color: rgba(3, 0, 6, 0.9);
  transition: background-color 0.3s ease;
}
.homeButton404:active {
  background-color: rgba(188, 39, 39, 0.7);
  transition: background-color 0.3s ease;
}



.modal-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  touch-action: pinch-zoom;
}
@media (orientation: landscape) and (max-height: 800px) {
  .modal-image-wrapper {
    overflow-y: auto !important;
  }
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.0s ease forwards;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('../static/wallpaper/Overlay.webp');
  background-size: cover;
  background-position: center;
}
.modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url('../static/wallpaper/Overlay.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 100vh;
}
@media (max-width: 1099px), (orientation: portrait) {
  .modal-overlay {
    background-attachment: scroll;
  }
}
@media (orientation: landscape) and (max-height: 800px) {
  .modal-overlay {
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-y: auto !important;
    height: 100dvh !important;
  }
}
.modal-content {
  max-height: 80vh;
  width: auto;
  max-width: 80vw;
  border: 0.2rem solid transparent;
  border-image: linear-gradient(
    30deg,
    rgba(229, 225, 225, 0.2),
    rgba(228, 220, 210, 0.5),
    rgba(194, 191, 191, 0.8),
    rgba(222, 219, 222, 0.5),
    rgba(201, 179, 176, 0.4)
  ) 1;
  box-sizing: border-box;
  margin-bottom: 1rem;
  background-color: black;
  cursor: zoom-out;
  outline: none;
  user-select: none;
  touch-action: manipulation;
  animation: slideIn 1.0s ease forwards;
}
@media (max-width: 768px) {
  .modal-content {
    max-width: 98vw;
    overflow: auto;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .modal-content {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .modal-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    bottom: 0.5rem;
  }
}
.modal-content:focus {
  outline: none;
}
.modal.hide {
  animation: fadeOut 1.2s ease forwards;
}
.modal-content.hide {
  animation: slideOut 1.2s ease forwards;
}
body.modal-open {
  overflow: hidden;
  pointer-events: auto;
}
body.modal-open .modal {
  pointer-events: auto;
  overflow: hidden;
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body.modal-open #topbar {
  pointer-events: none;
}
.modal-caption {
  min-height: 2.5rem;
  max-width: 95vw;
  text-align: center;
  font-size: clamp(1.0rem, 1.1rem, 1.2rem);
  font-family: 'Arimo-Regular';
  color: rgba(248, 248, 248, 0.9);
  text-shadow: 0 0 1rem rgba(3, 0, 6);
  z-index: 10000;
}
@media (max-width: 768px) {
  .modal-caption {
    min-height: 3.4rem;
    font-size: clamp(0.8rem, 0.9rem, 1rem);
    max-width: 98vw;
    overflow-wrap: break-word;
    z-index: 10000;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .modal-caption {
    display: none !important;
  }
}
.arrow-row {
  position: static;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(210, 210, 210, 0.8);
  border: none;
  outline: none;
  border-radius: 1rem;
  margin: 0;
  font-size: clamp(1.8rem, 2rem, 2.5rem);
  padding: 1.5rem 0.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .arrow-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
  }
  .arrow {
    position: static;
    background: transparent;
    transform: translateY(0);
    inset: 0;
    padding: 0.5rem;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .arrow {
    display: none;
  }
}
@media (hover: hover) {
  .arrow:hover {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
  }
}
.arrow:active,
.arrow.is-active {
  color: rgba(67, 135, 37, 0.9);
  transition: color 0.2s ease;
}
.arrow-left {
  left: 1rem; 
}
.arrow-right {
  right: 1rem; 
}
@media (max-width: 768px) {
  .arrow-left {
    left: 0;
  }
  .arrow-right {
    right: 0;
  }
}
.arrow.disabled {
  color: rgba(131, 129, 129, 0.5);
  background: transparent;
  pointer-events: none;
}



.home-icon {
  display: inline-block;
  margin-right: 1.2rem;
  margin-left: 2.0rem;
}
.icon {
  width: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  height: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  display: block;
}
.icon:hover {
  transform: scale(1.05);
  transition-duration: 0.3s;
}
.icon:active {
  transform: scale(0.9);
  transition-duration: 0.25s;
}



.img-zoomable,
.zoom-in-pics img,
.zoom-in-main > img {
  cursor: zoom-in;
}



@font-face {
    font-family: 'PathwayGothicOne';
    src: url('../static/fonts/PathwayGothicOne.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Arimo-Bold';
    src: url('../static/fonts/Arimo-Bold.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Arimo-Italic';
    src: url('../static/fonts/Arimo-Italic.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Arimo-Regular';
    src: url('../static/fonts/Arimo-Regular.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Arimo-SemiBold';
    src: url('../static/fonts/Arimo-SemiBold.woff2') format('woff2');
    font-display: swap;
}