:root {
    --grau: #708090;
    --grün: #90C226;
    --orange: #FFA500;
    --weiß: #F0F0F0;

    --nacht-grau: #2E2E2E;
    --nacht-grün: #4CAF50;
    --nacht-orange: #FF7043;
    --nacht-weiß: #E0E0E0;

    --card-background-day: rgba(62, 72, 85, 0.9);
    --card-background-night: rgba(35, 40, 45, 0.9);

}

        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            background-color: var(--grau);
            font-family: "embarcadero-mvb-pro-condense", sans-serif;
            font-weight: 400;
            font-style: normal;
	    scroll-behavior: smooth;
scroll-padding-top: 160px;
    transition: all 0.5s ease;
        }

#interactive-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

.dot {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(144, 194, 38, 0.3);
    width: 20px;
    height: 20px;
    pointer-events: none;
    opacity: 0; /* Beginnt unsichtbar */
    transition: transform 1s ease, opacity 1s ease;
    box-shadow: 0 0 10px rgba(112, 128, 144, 0);
    background-image: 
        radial-gradient(circle, rgba(144, 194, 38, 0.5) 0%, rgba(144, 194, 38, 0.2) 70%),
        radial-gradient(circle, rgba(112, 128, 144, 0.5) 0%, rgba(112, 128, 144, 0.2) 70%);
    background-position: center, center;
    background-size: 20px 20px, 30px 30px;
}

.dot.active {
    opacity: 0.5;
    transform: scale(2);
}

.dot.fade-out {
    opacity: 0;
    transform: scale(4);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
}

.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.1;
    transition: transform 0.4s ease-out;
}

#text-shape-container {
    position: relative;
    top: 55vh;
    width: 50vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 821px), (max-width: 1025px) and (orientation: portrait) {
    #text-shape-container {
        width: 95vw;
        height: 120vh;
        margin-top: 60vh;
        top: 0;
    }
}

.responsive-img {
    width: 15vw;
    border: 1px solid #ddd;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .responsive-img {
        width: 55vw;
    }
}

#dummycontainer {
  width: 100%;
  height: 180%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #dummycontainer {
    height: 290%;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  #dummycontainer {
    height: 290%;
  }
}

@media (orientation: portrait) and (min-width: 420px) and (max-width: 821px) {
  #dummycontainer {
    height: 300%;
  }
}

@media (orientation: landscape) and (min-width: 420px) and (max-height: 821px) {
  #dummycontainer {
    height: 300%;
  }
}

@media (orientation: portrait) and (min-width: 380px) and (max-width: 420px) {
  #dummycontainer {
    height: 310%;
  }
}

@media (orientation: landscape) and (min-width: 380px) and (max-height: 420px) {
  #dummycontainer {
    height: 310%;
  }
}

@media (orientation: portrait) and (max-width: 420px) {
  #dummycontainer {
    height: 350%;
  }
}

@media (orientation: landscape) and (max-height: 380px) {
  #dummycontainer {
    height: 350%;
  }
}

.bokeh-shape {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  z-index: 3;
  opacity: 0.8;
  overflow: hidden;
  animation: wobble 2s infinite ease-in-out;
  transition: box-shadow 2s cubic-bezier(0.65, 0.05, 0.36, 1), filter 2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

@keyframes wobble {
    0%, 100% {
        box-shadow: 
            0px 10px 30px rgba(0, 0, 0, 0.8), 
            inset 0px 0px 20px ${color}, 
            0px 0px 25px ${color};
        filter: brightness(1);
    }
    25% {
        box-shadow: 
            0px 15px 35px rgba(0, 0, 0, 0.85), 
            inset 0px 0px 25px ${complementaryColor}, 
            0px 0px 30px ${complementaryColor};
        filter: brightness(1.2);
    }
    50% {
        box-shadow: 
            0px 20px 40px rgba(0, 0, 0, 0.9), 
            inset 0px 0px 30px ${color}, 
            0px 0px 35px ${color}; 
        filter: brightness(1.4); 
    }
    75% {
        box-shadow: 
            0px 15px 35px rgba(0, 0, 0, 0.85), 
            inset 0px 0px 25px ${complementaryColor}, 
            0px 0px 30px ${complementaryColor};
        filter: brightness(1.2);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.bokeh-shape:hover {
    opacity: 1; 
    filter: brightness(1.5) blur(4px); 
    box-shadow: 
        0px 20px 50px rgba(0, 0, 0, 0.9), 
        inset 0px 0px 35px ${color}, 
        0px 0px 40px ${color}; 
}

.bokeh-shape a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.bokeh-shape span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--grün);
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 90%);
    border-radius: 15px;
    width: 100%;
    white-space: normal; 
    line-height: 1.2; 
}

.special-shape {
    max-width: 100%;
    max-height: 100%;
display: inline-block;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    z-index: 3;
    opacity: 1;
    overflow: hidden;
    animation: wobble 4s infinite ease-in-out; 
    transition: box-shadow 5s cubic-bezier(0.65, 0.05, 0.36, 1), 
                filter 5s cubic-bezier(0.65, 0.05, 0.36, 1), 
                background 5s cubic-bezier(0.65, 0.05, 0.36, 1), 
                border 5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.special-shape span {
    padding: 8px 15px; 
    white-space: normal; 
    line-height: 1.2; 
}

.special-shape:hover {
    opacity: 1;
    box-shadow: 
        0px 10px 30px rgba(0, 0, 0, 0.7), 
        inset 0px 0px 20px ${color}, 
        0px 0px 25px ${color}; 
}

.text-container {
    position: absolute;
    top: 20vh;
    left: 3.1em;
    width: 55%;
    background-color: transparent; 
    color: var(--weiß);
    box-sizing: border-box;
    z-index: 100;
    text-align: left; 
    font-size: 5vh; 
    transition: 0.3s;
    padding: 0.1em 0; 
}

@media (max-width: 1200px) {
    .text-container {
        font-size: 4.3vh; 
    }
}

@media (max-width: 992px) {
    .text-container {
        font-size: 3.5vh; 
    }
}

@media (max-width: 768px) {
    .text-container {
        font-size: 3vh; 
    }
}

@media (max-width: 576px) {
    .text-container {
        font-size: 2.8vh; 
    }
}

.text-container p {
    margin: 0;
}

.text-container .active-element {
  color: var(--grün);
  transition: color 0.5s;
  cursor: wait;
  display: inline-block;
  padding: 3px 14px;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  text-align: center;
  z-index: 100;
}

.parent-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
margin-bottom: 40px;
}

.text-containerb {
  position: relative;
  overflow: hidden;
  width: 94%;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 2vw;
  color: var(--weiß);
  box-sizing: border-box;
  text-align: left;
  transition: 0.3s;
  padding: 2.5%;
  z-index: 3;
}

.text-containerb p {
  margin: 10px 0;
  font-size: 3vh;
}

@media (max-width: 480px) {
  .text-containerb {
    font-size: 1.7vh;
  }
}

@media (max-width: 768px) {
  .text-containerb {
    font-size: 2.2vh;
  }
}

@media (max-width: 1024px) {
  .text-containerb {
    font-size: 2.7vh;
  }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse2 {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(0.9);
    }
}

.kachel-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 20px 0;
  width: 100%;
  justify-content: flex-start;
}

.kachel {
  width: calc(48% - 25px);
  min-width: 300px;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  color: var(--weiß);
  display: flex;
  flex-direction: column;
}

.kachel-inner {
  flex: 1;
  padding: 1em;
  overflow-y: auto;
  display: inline-block; /* schränkt Breite auf Inhalt ein */
  max-width: 100%;
}

.zwischenbilder3 {
  float: left;
  display: inline-block;
  width: auto;
  margin: 0 1em 1em 0;
}

.zwischenbilder3 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 1vw;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.zwischenbilder3 img:hover {
  transform: scale(1.05);
}

.beschreibung {
  clear: both;
  font-size: 1rem;
  line-height: 1.5;
}

.beschreibung::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 768px) {
  .kachel {
    width: 100%;
  }

  .zwischenbilder3 {
    width: 100%;
    margin: 0 0 1em 0;
  }
}

#logo-bokeh-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .background-container img {
    transform: scale(1.5);
  }
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.row-logo {
  margin-top: 0;
}

.logois img {
  height: 80px;
  width: auto;
}

.rv-container,
.pa-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rv-container,
.pa-container {
  width: 200px;
  height: 50px;
}

.rv-container img {
  position: absolute;
  opacity: 0.33;
  animation: fadeCycle 9s infinite;
  max-width: 120%;
  max-height: 120%;
}

.pa-container img {
  position: absolute;
  opacity: 0.33;
  animation: fadeCycle 9s infinite;
  max-width: 100%;
  max-height: 100%;
}

.rv-container img:nth-child(1),
.pa-container img:nth-child(1) {
  animation-delay: 0s;
}

.rv-container img:nth-child(2),
.pa-container img:nth-child(2) {
  animation-delay: 3s;
}

.rv-container img:nth-child(3),
.pa-container img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes fadeCycle {
  0% { opacity: 0.33; }
  16.66% { opacity: 1; }
  33.33% { opacity: 0.33; }
  100% { opacity: 0.33; }
}

.firework {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #f00;
    border-radius: 50%;
    animation: explode 0.5s ease-out forwards;
}

@keyframes explode {
    0% { opacity: 1; transform: scale(0); }
    100% { opacity: 0; transform: scale(3); }
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(2vw);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--orange);
    border-radius: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background-color: transparent;
    color: var(--grün);
    border-radius: 3vw;
  }
}

.überlogo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 94%;
  z-index: 3;
margin: 0 auto;
}

.logo-bar.visible {
  animation: fadeInSlideUp 3s forwards;
}

.logo-bar.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.logo-bar {
  text-align: center;
  display: flex;
position: relative;
  justify-content: center;
  align-items: center;
  height: 21vh;
  width: 100%;
  padding: 1vh;
  box-sizing: border-box;
  white-space: nowrap;
}

.fade-img {
  position: absolute;
  opacity: 0.33;
  max-height: 50%;
  max-width: 50%;
}

@keyframes subtle-emphasis {
  0%, 100% { opacity: 0.33; }
  33.33% { opacity: 1; }
  66.67% { opacity: 0.33; }
}

.logo-bar img:nth-child(1) {
  animation: subtle-emphasis 8s ease-in-out infinite;
}

.logo-bar img:nth-child(2) {
  animation: subtle-emphasis 8s ease-in-out infinite 3s;
}

.logo-bar img:nth-child(3) {
  animation: subtle-emphasis 8s ease-in-out infinite 6s;
}

.bottom-bar {
  position: relative;
  height: 60vh;
  width: 94%;
  color: var(--grün);
  font-size: 2.8vh;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1%;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 2vw;
  z-index: 3;
}

.cvcontainer {
  width: 90%;
  height: 80vh;
  padding: 0.2%;
  border-radius: 1vw;
  color: var(--weiß);
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  box-sizing: border-box;
  display: none;
  flex-wrap: wrap;
  overflow-y: auto;
}

.card {
  flex: 1 1 16vw;
  background-color: var(--card-background-day);
  border-radius: 1vw;
  padding: 1%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  margin: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .cvcontainer {
    padding: 3%;
    border-radius: 5vw;
  }
  
  .card {
    flex: 1 1 80vw;
    padding: 5%;
    border-radius: 3vw;
  }
}

.card p {
  font-size: 4vh;
  line-height: 1.2;
}

.card .heading {
  font-size: clamp(1rem, 1.95vh, 2.8rem);
  color: var(--grün);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 2vw;
  box-shadow: 0 2px 4px rgba(0, 0, 90, 0.4);
  padding: 0.5vw 1vw;
  display: inline-block;
  text-align: center;
  transition: 0.5s;
  font-weight: bold;
}

.card .cardtext {
  font-size: clamp(1rem, 1.95vh, 2.8rem);
  line-height: 1.2;
  text-align: left;
  margin-top: 25px;
}

html[lang="de"] .card#card2 .cardtext {
  margin-top: 0.5vw;
}

html[lang="de"] .card#card5 .cardtext {
  margin-top: 0.2vw;
}

.heading {
  font-size: clamp(1rem, 2.6vh, 3.8rem);
  color: var(--grün);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 0.5vw 1vw;
  display: inline-block;
  text-align: center;
  transition: 0.5s;
  font-weight: bold;
}

.subheading {
  font-size: clamp(0.8rem, 2.2vh, 3rem);
  color: var(--grün);
  font-weight: bold;
    padding-top: 40px;
    padding-bottom: 0.5em;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
}

img.profile-pic {
  max-width: 100%;
  height: auto;
  border-radius: 1vw;
  margin-top: 1vw;
  object-fit: cover;
  opacity: 0.8;
filter: brightness(1.2);
}

.profile-pic {
  width: 90%;
  max-width: 150px;
  border-radius: 10%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.anicontainer {
  display: none;
animation: pulse3 2s infinite ease-in-out;
}

canvas { 
  display: block; 
  width: 100%; 
  height: 100%; 
  position: absolute; 
}

.glow {
  filter: blur(10px);
  opacity: 0.5;
}

@keyframes pulse3 {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.8);
    }
    100% {
        transform: scale(0.8);
    }
}

.medialinks-container,
.contactdatimp-container,
.bottom-bar-content3 {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 1%;
font-size: 3vh;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.bottom-bar-content3 {
  font-size: 3vh;
}

.bottom-bar-content3 p {
  margin: 0;
  line-height: 1.4;
}

.bottom-bar-content2 {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 1%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  cursor: grab;
}

.bottom-bar-content2:active {
  cursor: grabbing;
}


@media (max-width: 1200px) {
  .bottom-bar {
    flex-wrap: wrap;
  }
  
  .medialinks-container,
  .contactdatimp-container,
  .bottom-bar-content2,
  .bottom-bar-content3 {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .medialinks-container,
  .contactdatimp-container,
  .bottom-bar-content2,
  .bottom-bar-content3 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.cube {
  position: relative;
    width: 10em;
    height: 10em;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg);
  will-change: transform;
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

.bottom-bar-content2 h2 {
  animation: pulse 2s infinite;
  font-size: 3vh;
  color: var(--grün);
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 3vw;
  padding: 0.5% 3%;
  transition: color 0.6s;
  margin-top: 5vw;
}

.bottom-bar-content2:hover h2 {
  color: var(--orange);
}

.icon-text-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: 10px;
  transition: color 0.5s ease;
}

.handmade-icon {
  height: 4vh;
  width: 4vh;
  margin-right: 1vh;
  vertical-align: middle;
  object-fit: contain;
  transition: color 0.5s ease, text-shadow 0.5s ease, transform 0.5s ease;
}

.handmade-text {
  font-weight: bold;
  fon-size: 3vh;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease, text-shadow 0.5s ease, transform 0.5s ease;
}

.copyright {
   color: var(--weiß);
}

.icon-text-wrapper:hover .handmade-text {
  transform: scale(1.05);
}

.icon-text-wrapper:hover .handmade-icon {
  transform: scale(1.1);
}

.contact,
.paypal,
.datenschutzimpressum {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
font-size: 3vh;
  color: var(--grün);
  transition: all 0.3s ease;
}

.contacttext,
.paypal-text {
  transition: all 0.3s ease;
  color: inherit;
}

.contact:hover,
.datenschutzimpressum:hover,
.paypal:hover {
  color: var(--orange);
}

.contact:hover img,
.paypal:hover img,
.datenschutzimpressum:hover img {
  transform: scale(1.1);
}

.contact a:hover,
.contact:hover .contacttext {
  color: var(--orange);
}

.medialinks-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.medialinks {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  color: var(--grün);
  transition: all 0.1s ease;
}

.contact img,
.paypal img,
.datenschutzimpressum img {
  height: 4.5vh;
  width: 4.5vh;
  transition: all 0.1s ease;
}

.contact a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
font-size: 3vh;
}

.medialinks img {
  width: 4.5vh;
  height: 4.5vh;
  transition: all 0.1s ease;
}

.medialinks span {
  transition: all 0.5s ease;
  font-size: 3vh;
  color: var(--grün);
}

.language img {
  width: 4.5vh;
  height: 4.5vh;
  transition: all 0.1s ease;
}

.language span {
  font-size: 3vh;
}

.button-red {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  background-color: red;
  color: white;
  text-decoration: none;
  transition: width 0.5s ease, background-color 0.5s ease, padding 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.button-red img {
  height: 3vh;
  transition: all 0.5s ease;
}

.button-red span {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button-red:hover {
  background-color: var(--grün);
  width: auto;
  padding: 10px 18px;
  border-radius: 25px;
}

.button-red:hover span {
  display: inline; 
  color: black;
  opacity: 1; 
}

.button-red:hover .pegeltext {
  color: black !important; 
}

@media (max-width: 780px) {
  .button-red {
    background-color: var(--grün); 
    width: auto; 
    height: auto; 
    border-radius: 25px;
  }

  .button-red span {
    display: inline; 
    color: black; 
    opacity: 1; 
  }
}

.language {
    display: flex; 
    gap: 40px; 
    align-items: center;
    justify-content: center; 
    margin-top: 20px; 
}

.language a {
    display: flex; 
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--grün);
    gap: 20px; 
}

.language a:hover {
    color: var(--orange); 
}

.language a:hover img {
    transform: scale(1.1); 
}

.medialinks:hover {
    color: var(--orange); 
}

.medialinks:hover img {
    transform: scale(1.1); 
}

.medialinks:hover span {
    color: var(--orange); 
}

.medialinks span:hover {
    color: var(--orange); 
}

.info-text {
    color: var(--weiß);
    font-size: 3vh;
}

#spacer {
    display: flex;
    min-height: 40px;
    width: 100%;
    position: relative;
}

.icons-container {
    position: fixed;
    top: 80px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transform-origin: center;
}

@media screen and (max-width: 480px) and (orientation: portrait) {
  .info-icon-wrapper2,
  .color-overlay,
  .icons-container {
    transform: scale(0.85);
    top: 60px;
  }
}

@media screen and (max-width: 1080px) {
  .info-icon-wrapper2,
.color-overlay,
    .icons-container {
        transform: scale(0.85);
    }
}

@media screen and (min-width: 1081px) and (max-width: 1439px) {
  .info-icon-wrapper2,
.color-overlay,
    .icons-container {
        transform: scale(0.9);
    }
}

@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .info-icon-wrapper2,
.color-overlay,
    .icons-container {
        transform: scale(1);
    }
}

@media screen and (min-width: 3840px) {
  .info-icon-wrapper2,
.color-overlay,
    .icons-container {
        transform: scale(2.2);
    }
}

    .info-icon-wrapper {
        position: fixed;
        top: 20px;
        right: 45px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .info-icon-background {
        position: absolute;
        width: 58px;
        height: 58px;
        background-color: var(--grün);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        z-index: 1;
    }

    .info-icon {
        position: relative;
        width: 50px;
        height: 50px;
        background-color: var(--grau);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8), 0 6px 12px rgba(0, 0, 0, 0.5);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.5s ease;
        z-index: 2;
    }

    .info-icon .icon {
        width: 50%;
        height: auto;
        margin-top: 2px;
        margin-left: 4px;
    }

    .info-icon:hover {
        background-color: rgba(255, 165, 0, 0.8);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.3);
        transform: scale(1.2);
    }

.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 1000;
}

.overlay-container {
  width: 90%;
  padding: 2%;
  border-radius: 2vw;
  color: var(--weiß);
  background-color: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
  box-sizing: border-box;
}

.overlay-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(62, 72, 85, 0.9);
  border-radius: 1vw;
  padding: 2%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  position: relative;
  justify-content: space-between;
  line-height: 1.2;
  max-height: 70vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .overlay-container {
    padding: 3%;
    border-radius: 5vw;
  }
  
  .overlay-card {
    padding: 5%;
    border-radius: 3vw;
  }

.overlay-card p {
  font-size: 2vh;
  }
}

.overlay-card p {
  font-size: 3vh;
  line-height: 1.2;
}

.overlay-card .heading {
  font-size: 3vh;
  color: var(--grün);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5vw;
  box-shadow: 0 2px 4px rgba(0, 0, 90, 0.4);
  padding: 0.5vw 1vw;
  display: inline-block;
  text-align: center;
  transition: 0.5s;
  font-weight: bold;
}

.info-icon-wrapper2 {
    position: absolute;
    top: 42px;
    right: 45px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.info-icon-wrapper2 .info-icon .icon {
        width: 60%;
        height: auto;
    margin: 0;
}

@media (max-width: 768px) {
    .info-icon-wrapper2 {
        position: fixed;
        top: 56px;
        right: 63px;
    }
}

.hint-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.hint-overlay .overlay-container {
    width: 90%;
    height: auto;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2%;
    box-sizing: border-box;
    overflow-y: auto;
}

.hint-overlay .overlay-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  font-size: 2vh;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hint-overlay .overlay-container {
        padding: 2%;
        max-height: 90vh;
    }
    .hint-overlay .overlay-card {
        font-size: 2vh;
    }
}

    .info-icon-wrapper3 {
        position: fixed;
        top: 69px;
        right: 14px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

.info-icon-wrapper3 .info-icon .icon {
        width: 60%;
        height: auto;
    margin: 0;
}


.color-overlay {
    position: fixed;
    top: 63px;
    right: 133px;
    display: flex;
    gap: 5px;
  background-color: rgba(62, 72, 85, 0.9);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
    z-index: 100;
}

@media screen and (max-width: 480px) {
    .color-overlay {
        top: 83px;
        right: 80px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .color-overlay {
        top: 83px;
        right: 80px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
    .color-overlay {
        top: 83px;
        right: 80px;
    }
}

@media screen and (min-width: 1081px) and (max-width: 1440px) {
    .color-overlay {
        top: 93px;
        right: 80px;
    }
}

@media screen and (min-width: 1441px) and (max-width: 2560px) {
    .color-overlay {
        top: 93px;
        right: 100px;
    }
}

@media screen and (min-width: 3840px) {
    .color-overlay {
        top: 180px;
        right: 360px;
    }
}

.color-overlay.hidden {
    display: none;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.6s ease;
}

.color-option:hover {
    scale: 1.2;
    box-shadow: 0 0 12px 4px rgba(255, 165, 0, 0.6);
}

.icon-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  font-size: 3vh; /* font-size: clamp(1rem, 1.95vh, 2.8rem);  */
    line-height: 1.2;
    padding: 15px;
    max-height: 70vh;
    overflow-y: auto;
    align-items: flex-start;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-start;
}

.icon-item .icon2 {
    width: 40px;
    height: auto;
}

.light-icon-wrapper {
    position: fixed;
    top: 118px;
    right: 45px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.info-icon2 {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--grau);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8), 0 6px 12px rgba(0, 0, 0, 0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 2;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.icon2 {
    width: 60%;
    height: auto;
    margin: 0;
}

.info-icon2:hover {
    background-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.2);
}

.info-icon2:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
  font-size: 3vh;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.info-icon2::after {
    opacity: 0;
    visibility: hidden;
}


.contact-icon-wrapper {
    position: fixed;
    top: 167px;
    right: 14px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.language-wrapper {
    position: fixed;
    top: 216px;
    right: 45px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.language-overlay {
    position: fixed;
    top: 216px;
    right: 133px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8%;
    background-color: rgba(62, 72, 85, 0.9);
    border-radius: 0.7vw;
    padding: 1vw;
    border-radius: 0.5vw;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    z-index: 100;
}

@media screen and (max-width: 480px) {
    .language-overlay {
        top: 185px;
        right: 105px;
    padding: 2vw;
    border-radius: 1vw;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .language-overlay {
        top: 185px;
        right: 105px;
    padding: 2vw;
    border-radius: 1vw;
    }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
    .language-overlay {
        top: 185px;
        right: 105px;
    padding: 2vw;
    border-radius: 1vw;
    }
}

@media screen and (min-width: 1081px) and (max-width: 1440px) {
    .language-overlay {
        top: 185px;
        right: 105px;
    padding: 2vw;
    border-radius: 1vw;
    }
}

@media screen and (min-width: 1441px) and (max-width: 2560px) {
    .language-overlay {
        top: 216px;
        right: 105px;
    padding: 0.7vw;
    border-radius: 0.2vw;
    }
}

@media screen and (min-width: 3840px) {
    .language-overlay {
        top: 475px;
        right: 250px;
    }
}

.language-overlay.hidden {
    display: none;
}

.language-option {
    width: 4vh;
    height: 4vh;
    cursor: pointer;
    transition: 0.6s ease;
}

.language-option:hover {
    scale: 1.2;
}

.language-option img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.link {
    color: var(--grün);
    text-decoration: none !important;
    transition: color 0.5s;
}

.link:hover {
    color: var(--orange);
}

.zwischenbilder, .zwischenbilder2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 20px 0;
}

.zwischenbilder img {
    height: 35vh;
    border-radius: 1vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.zwischenbilder2 img {
    height: 70vh;
    border-radius: 1vw;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.zwischenbilder img:hover {
    transform: scale(1.15);
}

.zwischenbilder2 img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .zwischenbilder, .zwischenbilder2 {
        flex-direction: column;
        align-items: center;
    }
    .zwischenbilder img, .zwischenbilder2 img {
        height: auto;
        width: 94%;
        object-fit: contain;
    }
}

p.small-text {
    font-size: 0.8em;
}

.video-container {
  position: relative;
  max-width: 50%;
  border-radius: 1vw;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.5s ease;
  margin-left: 0;
  margin-right: auto;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1vw;
}

.video-container:hover {
  transform: scale(1.1);
}

.pause-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.pause-button img {
  width: 35px !important;
  height: 35px !important;
}

.pause-button:hover {
  transform: translateX(-50%) scale(1.15);
}

.video-container:hover .pause-button {
  display: block;
}

@media (max-width: 768px) {
  .pause-button {
    bottom: 10px !important;
  }

  .pause-button img {
    width: 30px !important;
    height: 30px !important;
  }

  .video-container {
    width: 94%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pause-button {
    bottom: 12px !important;
  }

  .pause-button img {
    width: 32px !important;
    height: 32px !important;
  }

  .video-container {
    width: 94%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.image-comparison-container {
  position: relative;
  margin: auto;
  width: auto;
  height: 45vh;
  max-width: 100%;
  overflow: hidden;
  transition: transform 0.5s ease;
  margin-top: 50px;
  margin-left: 0;
  margin-right: auto;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#before-image, #after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1vw;
}

#after-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}

.image-comparison-container:hover {
  transform: scale(1.1);
}

.image-wrapper:hover #before-image {
  opacity: 0;
}

.image-wrapper:hover #after-image {
  opacity: 1;
}

@media (max-width: 768px) {
  .image-comparison-container {
    width: 94%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  #before-image, #after-image {
    width: 94%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .image-comparison-container {
    width: 94%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  #before-image, #after-image {
    width: 94%;
    height: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .image-comparison-container {
    width: 94%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  #before-image, #after-image {
    width: 94%;
    height: auto;
  }
}

    .category {
      border-bottom: 2px solid;
      padding: 20px 0;
    }
    .category:last-child {
      border-bottom: none;
      margin-bottom: 20px;
    }
    .category h2 {
      margin-bottom: 10px;
    }
    .category p {
      margin: 10px 0;
    }
    .price-note {
      font-style: italic;
      margin-top: 20px;
    }

.übertopbar {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

ul, ol, li, nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar {
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 10vh;
  justify-content: center;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 2vw;
  border-bottom-right-radius: 2vw;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: transform 0.5s ease;
  flex-direction: column;
}

.topbar-first-line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.topbar-second-line {
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .topbar {
    flex-direction: column;
  }

  .topbar-first-line {
    justify-content: flex-start;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger .bar {
  width: 100%;
  height: 4px;
  background-color: var(--grün);
  border-radius: 5px;
  transition: background-color 0.5s ease;
}

.hamburger:hover .bar {
  background-color: var(--orange);
}

.topbar nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar nav ul li {
  margin: 0 15px;
  background-color: var(--grau);
  border-radius: 2vw;
}

.topbar nav ul li a {
  color: var(--grün);
  font-size: 3vh;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-icon {
  width: 4vh;
  height: 4vh;
  margin-right: 10px;
  transition: transform 0.1s ease;
}

.nav-icon:hover {
  transform: scale(1.1);
}

.topbar nav ul li a:hover .nav-icon {
  transform: scale(1.1);
}

.topbar nav ul li a:hover {
  color: var(--orange);
}

.topbar-spacer {
  height: 10vh;
background-color: transparent;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
margin-right: 20px;
  }

  .topbar {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
  }

  .topbar-first-line,
  .topbar-second-line {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 8vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: auto;
    text-align: center;
    border-radius: 10px;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links ul li {
    margin: 15px 0;
  }

  .nav-icon {
    width: 25px;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    margin-right: 20px;
  }

  .topbar {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
  }

  .topbar-first-line,
  .topbar-second-line {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 8vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 500px;
    height: auto;
    text-align: center;
    border-radius: 10px;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 25px 0;
  }

  .nav-links ul li {
    margin: 18px 0;
  }

  .nav-icon {
    width: 28px;
  }
}

.topbar .logo {
  display: flex;
  align-items: center;
  background-color: transparent;
}

.topbar .logo img {
  height: 8vh;
  background-color: transparent;
  transition: transform 0.3s ease;
  display: block;
}

.topbar .logo > img:hover {
  transform: scale(1.1);
}

.topbar .logo-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 10px;
}

.logo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 145px;
}

.topbar .logo-images {
  display: flex;
  align-items: center;
  justify-content: flex-start;
width: auto;
  height: 1.8rem;
  position: relative;
  margin-left: -1px;
margin-bottom: -1px;
}

.topbar .logo-images img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.33;
  animation: fadeInCycle 9s infinite;
  height: 100%;
  width: auto;
}

.topbar .logo-images img:nth-child(1) {
  animation-delay: 0s;
}

.topbar .logo-images img:nth-child(2) {
  animation-delay: 3s;
}

.topbar .logo-images img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes fadeInCycle {
  0% { opacity: 0; }
  33% { opacity: 1; }
  66% { opacity: 0; }
  100% { opacity: 0; }
}

.topbar .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--grün);
  line-height: 1;
  text-align: left;
}

.topbar .logo-slogan {
  font-size: 1rem;
  color: var(--weiß);
  margin-top: 4px;
  margin-right: 40px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .topbar .logo img {
    height: 6vh;
  }
  
  .topbar .logo-text {
    font-size: 1.2rem;
  }
  
  .topbar .logo-slogan {
    font-size: 0.9rem;
  }
  
  .topbar .logo-images {
    height: 1.2rem;
  }
  .topbar .logo-images img {
    height: 100%;
  }
  .logo-row {
    gap: 120px;
  }
}

@media screen and (max-width: 480px) {
  .topbar .logo img {
    height: 5vh;
  }
  
  .topbar .logo-text {
    font-size: 1rem;
  }
  
  .topbar .logo-slogan {
    font-size: 0.7rem;
  }
  
  .topbar .logo-images {
    height: 1rem;
  }
  .topbar .logo-images img {
    height: 100%;
  }
  .logo-row {
    gap: 90px;
  }
}

@media screen and (max-width: 1281px) and (orientation: landscape) {
  .topbar .logo img {
    height: 5vh;
  }
  
  .topbar .logo-text {
    font-size: 1rem;
  }
  
  .topbar .logo-slogan {
    font-size: 0.8rem;
  }
  
  .topbar .logo-images {
    height: 1rem;
  }
  
  .topbar .logo-images img {
    height: 100%;
  }

  .logo-row {
    gap: 100px;
  }
}
