.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================
   BASE / DESKTOP DEFAULT
   ========================================= */

/* Elementor-spezifisch: Timeline-Höhe & Farbe */
.elementor-kit-6 .timeline-center {
  --timeline-color: #D7CCBD;
  min-height: 5000px; /* Desktop-Höhe */
}

/* Section mit Timeline */
.timeline-section {
  position: relative;
}

/* Wrapper */
.timeline-center {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;

  --timeline-color: #D7CCBD;
}

/* Track-Wrapper */
.timeline-track {
  position: relative;
  width: 5px;
}

/* Hellgraue Grundlinie */
.timeline-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #e5e5e5;
  border-radius: 999px;
  z-index: 0;
}

/* Animierte Fortschrittslinie */
.timeline-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: #000000;
  border-radius: 999px;
  transform-origin: top;
  transition: height 0.05s linear;
  z-index: 1;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}

/* Schwarze Spitze am Ende */
.timeline-progress::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 18px;
  border-radius: 999px;
  background: #000000;

  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    transparent 100%
  );
}

/* Stops */
.timeline-stop {
  position: absolute;
  left: 50%;
  top: var(--pos);
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Icon-Container (Kreis) */
.timeline-icon {
  position: relative;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* SVG-Icons – Größe */
.timeline-icon .timeline-symbol {
  width: 24px;
  height: 24px;
  display: block;
}

/* Zahl im Kreis – falls genutzt */
.timeline-step {
  font-size: 13px;
  font-weight: 500;
  color: var(--timeline-color);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.timeline-stop.is-active .timeline-icon {
  box-shadow: none;
  transform: scale(1.05);
}

.timeline-stop.is-active .timeline-step {
  opacity: 1;
  transform: scale(1);
  color: #ffffff;
}

/* Fades um die Icons herum */
.timeline-stop::before,
.timeline-stop::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 400px;
  border-radius: 999px;
  z-index: 3;
}

/* Fade nach oben */
.timeline-stop::before {
  bottom: calc(50% + 4px);
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 8%,
    rgba(255, 255, 255, 0.9) 16%,
    rgba(255, 255, 255, 0.78) 26%,
    rgba(255, 255, 255, 0.6) 38%,
    rgba(255, 255, 255, 0.4) 52%,
    rgba(255, 255, 255, 0.25) 68%,
    rgba(255, 255, 255, 0.12) 82%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Fade nach unten */
.timeline-stop::after {
  top: calc(50% + 4px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 8%,
    rgba(255, 255, 255, 0.9) 16%,
    rgba(255, 255, 255, 0.78) 26%,
    rgba(255, 255, 255, 0.6) 38%,
    rgba(255, 255, 255, 0.4) 52%,
    rgba(255, 255, 255, 0.25) 68%,
    rgba(255, 255, 255, 0.12) 82%,
    rgba(255, 255, 255, 0) 100%
  );
}


/* =========================================
   TABLET (z.B. <= 1024px)
   ========================================= */

@media (max-width: 1024px) {

  /* Höhe kannst du hier anpassen, wenn die Section auf Tablet kürzer/länger ist */
  .elementor-kit-6 .timeline-center {
    min-height: 6800px; /* Beispielwert für Tablet */
  }

  .timeline-track {
    width: 4px;
  }

  .timeline-track::before,
  .timeline-progress {
    width: 2px;
  }

  .timeline-icon {
    width: 34px;
    height: 34px;
  }

  .timeline-icon .timeline-symbol {
    width: 20px;
    height: 20px;
  }

  .timeline-stop::before,
  .timeline-stop::after {
    height: 300px; /* weniger Fade-Höhe auf Tablet */
  }
}


/* =========================================
   MOBILE (z.B. <= 767px)
   ========================================= */

@media (max-width: 767px) {

  /* Mobile: Timeline-Höhe deutlich kürzer halten */
  .elementor-kit-6 .timeline-center {
    min-height: 4000px; /* hier nach Gefühl anpassen */
  }

  .timeline-track {
    width: 3px;
  }

  .timeline-track::before,
  .timeline-progress {
    width: 2px;
  }

  /* Icons etwas kleiner, damit es luftiger wirkt */
  .timeline-icon {
    width: 30px;
    height: 30px;
  }

  .timeline-icon .timeline-symbol {
    width: 18px;
    height: 18px;
  }

  .timeline-step {
    font-size: 11px;
  }

  /* Fades kürzer, damit es nicht so „schwer“ aussieht */
  .timeline-stop::before,
  .timeline-stop::after {
    height: 220px;
    width: 20px;
  }

  /* Falls du mehr Abstand nach links/rechts brauchst (z. B. Text daneben): 
     kannst du hier z. B. die Timeline leicht nach links schieben */
  /* .timeline-track {
    margin-left: 10px;
  } */
}



.mein-parallax-container {
  position: relative;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* wieder cover, ist am sichersten */
  transition: background-position 2.5s ease-out;
}

@media (min-width: 600px) {
  .mein-parallax-container {
    will-change: background-position;
  }
}



.mein-container {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: 30px;

  /* Deutlichere Rahmen-Kombination */
  border: 1px solid rgba(255, 255, 255, 0.08); /* heller Innenrand */
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),       /* feiner dunkler Innenrahmen */
    0 0 0 2px rgba(255, 255, 255, 0.05),      /* heller äußerer Glow */
    0 8px 24px rgba(0, 0, 0, 0.25);           /* Tiefenschatten */
  overflow: hidden;
  z-index: 1;
}

.mein-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    ellipse at 20% 10%,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(0, 0, 0, 0.07) 85%,
    rgba(0, 0, 0, 0.12) 100%
  );
}/* End custom CSS */