@font-face {
  font-family: 'Noto Sans';
  src: url('Noto_Sans/static/NotoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('Noto_Sans/static/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

.social_logos {
  width: 32px;
  height: 32px;

  margin-top: 20px;

}

a {
  text-decoration: none !important;
}

a:hover .link-text {
  text-decoration: underline;
}

a:hover .material-symbols-outlined {
  text-decoration: none;
}

.contact-link {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Anti-Scraper Kontakt-Platzhalter (E-Mail/Telefon) */
.cloak {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}

.cloak.revealed {
  cursor: auto;
}

.cloak a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-text {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

strong,
b {
  font-weight: 700;
}

@font-face {
  font-family: 'Maitree';
  src: url('Maitree/Maitree-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

.body_bold {
  font-family: 'Noto Sans' !important;
  font-weight: 700 !important;

}

#wrapper p {
  max-width: 60%;
  /* maximale Breite */
  margin: 0 auto;
  /* zentriert horizontal */
  padding: 0 20px;
  /* horizontaler Innenabstand */
  box-sizing: border-box;
  font-family: "Noto Sans";
}


.only-mobile {
  display: none;
}

.image.only-mobile {
  display: none;
}

.only-desktop {
  display: block;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;

  font-weight: 300;

}

body *:not(.material-symbols-outlined) {
  font-family: "Maitree", sans-serif;
  font-weight: 300;
}

body::-webkit-scrollbar {
  display: none;
}

#sketchContainer canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /* Canvas unter dem Icon */
}



.scroll-down-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 100%;
  color: rgb(0, 0, 0);
  background-color: #ffffff;

  cursor: pointer;
  z-index: 999;
  /* Korrigiert: ohne px */

}

/* slide zwei - animation */

.container-intro {

  display: flex;
  flex-direction: row;
  align-items: center;
  height: 83%;
  column-gap: 10%;
}

.intro-text {
  max-width: 40%;
  font-size: 60px;
}

.container-intro .blob {
  position: relative;
  width: 450px;
  /* noch größer! */
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: visible;
  margin-left: 32px;
  z-index: 1;
  animation: morph 1.8s ease-in-out infinite;
  background: none;
}

.container-intro .blob .paint {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  /* kleiner als vorher */
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #00e5cf 0%, #0a74d9 70%, #0a74d9 100%);
  filter: blur(29px) contrast(1.4) brightness(1.1);
  /* Blur etwas reduziert, Kontrast/Helligkeit erhöht */
  z-index: 1;
}

@keyframes morph {
  0% {
    border-radius: 90% 10% 10% 90% / 90% 10% 90% 10%;
  }

  20% {
    border-radius: 10% 90% 90% 10% / 10% 90% 10% 90%;
  }

  40% {
    border-radius: 95% 5% 80% 20% / 20% 80% 5% 95%;
  }

  60% {
    border-radius: 5% 95% 20% 80% / 80% 20% 95% 5%;
  }

  80% {
    border-radius: 50% 50% 90% 10% / 10% 90% 50% 50%;
  }

  100% {
    border-radius: 90% 10% 10% 90% / 90% 10% 90% 10%;
  }
}

.toggle-text2 {
  font-family: "Noto Sans", sans-serif;

  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 20px 0;
  color: #9A9A9A !important;
  display: flex;
  align-items: center;
}

.toggle-text2 a {
  color: #9A9A9A !important;
}

.toggle-text2 .material-symbols-outlined {
  padding-left: 5px;
  font-size: 18px;
}


a {
  color: black;
  text-decoration: none;

}

a:hover span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a.menu-link:hover {
  text-decoration: underline !important;
}




/* Scroll Snap Container */
.snap-container {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

/* Slides */
.slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100%;

  flex-shrink: 0;
  color: black;

  background: #FFFFFF;
  gap: 1rem;
  padding: 0 0 0 40px;

}

#sketchContainer {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}

.logo-strobel {
  margin-top: 20px;
}


.slide-1 {
  background: #FFFFFF;
  overflow: hidden;

  padding: 0 0;
}



/* Slide contents */
h1 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 1.3em;
}

.gradient-text {
  background: linear-gradient(90deg, #000000, #00ABE2, #00FFC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 8px 0px;
  font-size: 20px;
}



.text {
  max-width: 25%;
  min-width: 25%;
  flex-direction: column;
  max-height: none;
  overflow: visible;
  font-family: "Noto Sans", sans-serif;
}

.slide-6 .headline-end {
  margin-top: 5%;
}

.slide-7 .headline-end {
  margin-top: 5%;
}

.slide-8 .headline-end {
  margin-top: 5%;
}


.text p {
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-family: "Noto Sans", sans-serif;
  color: #3d3d3d;
  line-height: 150%;
  font-weight: 300;
}

.logo {
  display: block;
  height: 46px;
  margin: 0px 0px;
  margin-left: -10px;
}

.slide-container {
  display: flex;
  align-items: start;
  height: calc(100vh - 200px - 110px);
  max-height: calc(100vh - 200px - 110px);
  margin-top: 28px;
  box-sizing: border-box;
}

.image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}

.image img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}



/* Fixed footer */
.material-symbols-outlined {
  font-variation-settings: 'FILL'0, 'wght'200, 'GRAD'0, 'opsz'48;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  vertical-align: middle;
}

/* Lokale Inline-SVG-Icons (ersetzen die frueheren Google Material Symbols) */
.material-symbols-outlined > svg.ms-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}

.scroll-down-icon .material-symbols-outlined {
  font-size: 50px;
  /* Oder z.B. 150px für noch größer */
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 64px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  color: black;
  z-index: 1000px;
  font-size: 30px;
  border-top: 1px solid #D1D1D1;
}

.burger {
  display: flex;
  align-items: center;
  margin-right: 80px;
}

.burger .material-symbols-outlined {
  font-size: 40px;
  cursor: pointer;

}




/* Menu styles */
.menu {
  position: fixed;
  bottom: 60px;
  padding-left: 40px;
  padding-bottom: 20px;
  padding-top: 20px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  border-top: 1px solid #D1D1D1;
}

.menu a {
  color: black;
  padding: 5px 0px;
  width: 100%;
  text-align: left;
  font-size: 30px;
}

.menu .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
}

.menu .nav-link .material-symbols-outlined {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.nav-link .icon-hover {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 32px;
  text-decoration: none;
}

.nav-link:hover .icon-hover {
  opacity: 1;
  transform: translateX(0);
}

.slide-9 {
  height: 100%;
  overflow-y: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0px 40px 40px 40px;
  box-sizing: border-box;
}

.slide-9 .text {
  font-family: 'Noto Sans';
  max-width: 100%;

}

.logo-box-approach {
  display: flex;
  align-items: flex-start;
  /* Icon oben ausrichten */
  justify-content: flex-start;
  /* linksbündig */
  gap: 8px;
  text-align: left;
  align-items: center;
  text-underline-offset: 3px;

}

.grid {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 25%;
}




/* Anpassung für kleinere Screens */
@media (max-width: 768px) {



  .scroll-down-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 70px;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 100%;
    color: rgb(0, 0, 0);
    background-color: #ffffff;

    cursor: pointer;
    z-index: 999;
    /* Korrigiert: ohne px */

  }


  /* slide zwei - animation */

  .container-intro {

    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10%;



  }

  .intro-text {
    max-width: 100%;
    width: 100%;
    font-size: 40px;
  }

  .container-intro .blob {

    width: 150px;
    height: 150px;

    z-index: 999;
    animation: morph 1s ease-in-out infinite;
  }

  /* Slide contents */
  h1 {
    margin-top: 0px;
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 1.3em;
  }

  .text {

    max-width: 100%;
    display: flex;
    flex-direction: column;
    max-height: none;

    font-family: "Noto Sans", sans-serif;

  }

  .text_alt {

    font-family: "Noto Sans", sans-serif;
    width: 100px;
  }

  .only-desktop {
    display: none;
  }

  .image.only-desktop {
    display: none;
  }

  .only-mobile {
    display: block;
  }


  .image.only-mobile {
    display: block;
  }




  /* overlay ausklappen */

  .toggle-text {
    display: block;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
    padding: 0 20px;
    color: #9A9A9A;
    display: flex;
    align-items: center;

  }

  .toggle-text span {
    font-size: 32px;
  }

  .text-slideup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 0;
    overflow: hidden;
    background: white;
    transition: height 0.9s ease, opacity 0.9s ease, visibility 0.5s ease;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
  }

  /* Offen: sichtbar + 100vh */
  .text-slideup.open {
    height: 100%;
    opacity: 1;
    visibility: visible;
  }

  .text-slideup-content {
    padding: 20px;
    overflow-y: auto;
    height: 100%;
    box-sizing: border-box;
  }

  .text-slideup-content p {
    font-family: "Noto Sans", sans-serif;
    line-height: 160%;
  }

  .close-slideup {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: #9A9A9A;
  }

  .toggle-text2 {
    font-family: "Noto Sans", sans-serif;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 20px 0;
    color: #9A9A9A !important;
    display: flex;
    align-items: center;
  }

  .toggle-text2 a {
    color: #9A9A9A !important;
  }

  .toggle-text2 .material-symbols-outlined {
    padding-left: 5px;
    color: #9A9A9A !important;

  }

  .icon_thin {
    color: #b7b7b7;

  }

  .close-slideup span {
    font-size: 32px;
  }

  .image.only-mobile {
    width: 100%;
  }

  .image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex: 1;
    position: relative;
    overflow: hidden;

  }

  .image img {
    max-width: 100%;
    max-height: 100%;
  }


  .image .image-about {
    width: 100%;

    object-fit: cover;
  }

  .image .image-taube {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 64px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    padding: 0 20px;
    z-index: 99900;
    font-size: 24px;
    border-top: 1px solid #D1D1D1;
  }

  .burger {
    display: flex;
    align-items: center;
    margin-right: 40px;
  }

  .logo-strobel {
    margin-top: 0px;
  }

  .menu a {
    color: black;
    text-decoration: none;
    padding: 15px 0px;
    width: 100%;
    text-align: left;
    font-size: 24px;
  }


  .menu {
    position: fixed;
    bottom: 60px;
    padding-left: 20px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    border-top: 1px solid #D1D1D1;
  }


  .slide-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 5px;

  }

  .slide {
    width: 100%;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

  }

  .slide-9 {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .slide-9 .text {
    font-family: 'Noto Sans';
    max-width: 100%;

  }

  .logo-box {
    display: flex;
    align-items: flex-start;
    /* Icon oben ausrichten */
    justify-content: flex-start;
    /* linksbündig */
    gap: 8px;
    text-align: left;
    align-items: center;
    text-underline-offset: 3px;

  }

  .logo-box .material-symbols-outlined {
    font-size: 22px;
    flex-shrink: 0;
  }

  .link-text {
    display: flex;
    align-items: flex-start;
    /* Icon oben ausrichten */
    justify-content: flex-start;
    /* linksbündig */
    gap: 8px;
    text-align: left;
  }



  /* Ergänzung für mobile: Blob kräftig und rund */
  @media (max-width: 768px) {
    .container-intro .blob {
      width: 250px;
      height: 250px;
      margin-left: 0;
      border-radius: 50%;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: morph 1.2s ease-in-out infinite;
      background: none;
    }

    .container-intro .blob .paint {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 150px;
      height: 150px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, #00e5cf 0%, #0a74d9 70%, #0a74d9 100%);
      filter: blur(25px) contrast(1.7) brightness(1);
      z-index: 1;
    }
  }
}