/* //////////////////////////////////*/
/* ///////////// Fonts //////////*/

@font-face {
  font-family: "GeistVF";
  src: url("/assets/fonts/GeistVF.ttf") format("truetype");
}

@font-face {
  font-family: "AvaraBold";
  src: url("/assets/fonts/Avara-Bold.otf") format("opentype");
}

.imperial-script-regular {
  font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "CaladeaRegular";
  src: url("/assets/fonts/caladea-regular.ttf") format("truetype");
}

/* //////////////////////////////////*/
/* ///////////// Body ///////////////*/

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #c0c289, #7ba3ce);
  background-image: url("/assets/imgs/png/background-bluegreen.png");

  cursor: url("/assets/imgs/png/cursorspikesblack.png"), auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

* {
  box-sizing: border-box;
  cursor: url("/assets/imgs/png/cursorspikesblack.png"), auto !important;
}

/* //////////////////////////////////*/
/* ///////////// Menü ///////////////*/

.circle-wrapper {
  position: fixed;
  top: 24px;
  right: 24px;
  display: inline-block;
  z-index: 80000;
}

.main-circle,
.dropdown-circle {
  width: 80px;
  height: 80px;
  background-color: black;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 30px;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, opacity 0.3s;
}

.dropdown-circle {
  position: absolute;
  right: 0;
  opacity: 0;
  transform: translateY(0) scale(0);
  pointer-events: none;
}

/* Positionierung der Dropdown-Kreise */
.circle-1 {
  top: 80px;
}

.circle-2 {
  top: 155px;
}

.circle-3 {
  top: 240px;
}

.circle-4 {
  top: 340px;
}

.circle-5 {
  top: 400px;
}

/* circle 1-7: top down mit right */
.circle-1 {
  top: 80px;
  right: 0;
}
.circle-2 {
  top: 160px;
  right: 0;
}
.circle-3 {
  top: 240px;
  right: 0;
}
.circle-4 {
  top: 320px;
  right: 0;
}
.circle-5 {
  top: 400px;
  right: 0;
}
.circle-6 {
  top: 480px;
  right: 0;
}
.circle-7 {
  top: 540px;
  right: 0;
}

/* circle 8-17: top weiter runter aber mit left */
.circle-8 {
  top: 540px;
  right: 30px;
}
.circle-9 {
  top: 540px;
  right: 70px;
}
.circle-10 {
  top: 540px;
  right: 170px;
}
.circle-11 {
  top: 540px;
  right: 250px;
}
.circle-12 {
  top: 540px;
  right: 320px;
}
.circle-13 {
  top: 540px;
  right: 400px;
}
.circle-14 {
  top: 540px;
  right: 510px;
}
.circle-15 {
  top: 540px;
  right: 590px;
}
.circle-16 {
  top: 540px;
  right: 670px;
}
.circle-17 {
  top: 540px;
  right: 1120px;
}

/* circle 18-25: bottom hochzählend, links */
.circle-18 {
  top: 500px;
  right: 1120px;
}
.circle-19 {
  top: 450px;
  right: 1120px;
}
.circle-20 {
  top: 300px;
  right: 1120px;
}
.circle-21 {
  top: 200px;
  right: 1120px;
}
.circle-22 {
  top: 150px;
  right: 1120px;
}
.circle-23 {
  top: 100px;
  right: 1120px;
}
.circle-24 {
  top: 20px;
  right: 1120px;
}
.circle-25 {
  top: 8px;
  right: 1120px;
}

/* circle 26-40: top rechts weiterlaufend */
.circle-26 {
  top: 0px;
  right: 1100px;
}

.circle-27 {
  top: 0px;
  right: 1000px;
}

.circle-28 {
  top: 0px;
  right: 990px;
}

.circle-29 {
  top: 0px;
  right: 930px;
}

.circle-30 {
  top: 0px;
  right: 890px;
}

.circle-31 {
  top: 0px;
  right: 750px;
}

.circle-32 {
  top: 0px;
  right: 680px;
}

.circle-33 {
  top: 0px;
  right: 600px;
}

.circle-34 {
  top: 0px;
  right: 500px;
}

.circle-35 {
  top: 0px;
  right: 420px;
}

.circle-36 {
  top: 0px;
  right: 330px;
}

.circle-37 {
  top: 0px;
  right: 250px;
}

.circle-38 {
  top: 0px;
  right: 180px;
}

.circle-39 {
  top: 0px;
  right: 100px;
}

.circle-40 {
  top: 0px;
  right: 80px;
}

/* Hover-Effekt */
.circle-wrapper:hover .dropdown-circle {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.circle-wrapper:hover .main-circle {
  transform: scale(1.1);
}

/* .circle-element-wrapper {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  z-index: 80000;
}

.circle-element,
.circle-element2,
.circle-element3 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #000;
} */

/* //////////////////////////////////*/
/* ///////////// Ideen Liste ///////////////*/

.ideen-liste {
  position: fixed;
  display: flex;

  top: 15px;
  right: 10px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000000;
}

.ideas-container {
  position: fixed;
  top: 0px;
  right: 200px;

  column-count: 3;
  column-gap: 20px;

  padding: 20px;
  background-color: white;
  color: black;

  width: 800px;
  height: 300px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  font-family: "CaladeaRegular";

  rotate: -1deg;

  border: 1px solid black;
  overflow: auto;
}

.idea-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-size: larger;
}

.idea-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.h2 {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-size: 15pt;
  line-height: 15pt;
  rotate: 2deg;
}

/* //////////////////////////////////*/
/* ///////////// Headline //////////*/

.headline {
  display: inline-block;
  position: fixed;

  top: 28px;
  left: 45%;

  height: 100px;
  width: 200px;
  z-index: 80000;

  pointer-events: none;
}

/* //////////////////////////////////*/
/* ///////////// Raupe-Kontur //////////*/

/* .raupekontur {
  display: flex;
  position: fixed;
  left: 24px;
  bottom: 150px;

  height: 400px;

  margin: 0;
  z-index: 1001;
  pointer-events: none;
} */

/* //////////////////////////////////*/
/* ///////////// Info-Text //////////*/

.infotext {
  /* pointer-events: none; */
  display: flex;
  position: fixed;

  left: 30px;
  bottom: 5px;
  width: 30em;

  margin: 24px;
  z-index: 1000;
  rotate: 1deg;
  /* padding: 20px; */

  /* background: linear-gradient(to top, #7ba3ce, #c0c289); */
  /* background-color: white; */
  /* border: 2px solid black; */

  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  font-size: 13pt;
  color: black;
}

/* Optional: Smooth Animation */
.infotext.hidden {
  display: none;
  /* Alternativ mit opacity und transition für weiches Ausblenden */
}

/* .infotextimg {
  display: flex;
  position: fixed;

  bottom: 24px;
  left: 15px;
  padding: 30px;
  z-index: 1000;

  width: 1000px;
  height: auto;
} */

.text-bottom1 {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 50px;
  z-index: 1000;

  rotate: -2deg;

  width: 22em;
  margin: 10px;
  padding: 10px;

  font-weight: 400;
  font-size: large;
  font-style: normal;
  line-height: 1.1;
  text-align: center;

  -webkit-text-stroke: 0px transparent;
  transition: -webkit-text-stroke 0.3s ease, color 0.3s ease;

  transition: transform 1s ease;
}

.text-bottom1 :hover {
  -webkit-text-stroke: 3px black;
  color: black;

  transform: rotate(3deg);
}

.goon {
  display: flex;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;

  rotate: 3deg;

  width: 22em;
  margin: 10px;
  padding: 10px;

  font-weight: 400;
  font-size: large;
  font-style: normal;
  line-height: 1.2;
  text-align: center;
}

/* //////////////////////////////////*/
/* ///////////// Raupe //////////////*/

.crawler {
  position: relative;
  top: 50%;
  width: 100vw;
  height: 100vh;
}

/* 1 Raupenglied-div (fährt nach vorne) */
.segment {
  position: absolute;
  width: 580px;
  aspect-ratio: 1/1; /* Macht segment quadratisch */
}

.segment:hover {
  z-index: 99;
}

/* 2 Einzelne Glieder (hoch runter) */
.segment-inner {
  position: relative;
  width: 100%;
  height: 100%;

  /* background: radial-gradient(circle, #65bcd7, #e3f359); */
  /* background: radial-gradient(circle, #65bcd7, #e3f359); */
  /* background: radial-gradient(circle at center, #b25461 0%, #c0c289 80%); */
  /* background-size: 150% 150%;
  background-repeat: no-repeat;
  background-position: 50% 50%; */

  /* border-radius: 50%;
  border: 2px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  /* Text in Segment */
  /* padding: 15px; */
  text-align: center;

  cursor: pointer;
}

.segment-inner-text {
  z-index: 1;
  width: 30%;
  height: 30%;
  /* padding-left: 7rem;
  padding-right: 7rem; */
  overflow-x: hidden;
  overflow-y: auto;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow-wrap: break-word;

  /* border: 1px solid red;
  border-radius: 99999rem; */
}

.segment-inner-text p {
  overflow-wrap: break-word;
  word-break: break-all;
}

.segment-img {
  position: absolute;
}

/* //////////////////////////////////////////////////*/
/* ///////////// Segments-Inner-Muster //////////////*/

/* .segment-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3; 
  z-index: 0;
} */

/* Verschiedene Musterklassen  */
/* .pattern-dots-1::before {
  background-image: radial-gradient(#000 3px, transparent 1px);
  background-size: 10px 10px;
}

.pattern-dots-2::before {
  background-image: radial-gradient(#000 1px, transparent 1.5px);
  background-size: 12px 12px;
}

.pattern-dots-3::before {
  background-image: radial-gradient(#000 5px, transparent 2px);
  background-size: 14px 14px;
}

.pattern-dots-4::before {
  background-image: radial-gradient(#000 7px, transparent 1.2px);
  background-size: 16px 16px;
}

@keyframes pulseDots {
  0%,
  100% {
    background-size: 10px 10px;
  }
  50% {
    background-size: 12px 12px;
  }
}


.segment-inner.hover-anim::before {
  animation: pulseDots 1.2s ease-in-out infinite;
} */

/* ////////////////////////////////////// */

.anim-path-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.anim-path-container svg {
  position: absolute;
  top: 0;
  /* left: -50%; */
  width: 100%;
  height: 100%;
}

/* TRANSPARENTES SEGMENT AM ENDE ZUM HINZUFÜGEN */

.interactive-segment {
  opacity: 0;
}

.interactive-segment:hover {
  opacity: 0.5;
  cursor: text;
}

#custom-cursor-text {
  position: fixed;
  pointer-events: none;

  top: 0;
  left: 0;

  width: 80px;
  height: 80px;

  transform: translate(-50%, -50%);
  padding: 0px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* background: #7ba3ce; */

  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;

  border-radius: 50%;
  text-align: center;

  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 500000;
}
