.elementor-6 .elementor-element.elementor-element-adba313{--display:flex;}.elementor-6 .elementor-element.elementor-element-adba313.e-con{--flex-grow:0;--flex-shrink:0;}body.elementor-page-6:not(.elementor-motion-effects-element-type-background), body.elementor-page-6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#6C7B8E;}@media(min-width:768px){.elementor-6 .elementor-element.elementor-element-adba313{--width:64.872%;}}/* Start custom CSS for html, class: .elementor-element-9892cc1 *//* Grundstruktur */
.christmas-timeline {
  position: relative;
  margin: 40px 0;
  padding: 0 20px;
}

/* Vertikale Linie */
.christmas-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #FFD700, #FF4500); /* gold-orange für festliche Lichter */
  transform: translateX(-50%);
}

/* Punkte */
.timeline-point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 0;
  font-family: 'Roboto', sans-serif;
}

/* Kreis auf Linie */
.timeline-point::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FF4500; /* warmes Rot für Lichter */
  box-shadow: 0 0 8px #FFD700, 0 0 16px #FFA500; /* Lichter-Glow */
  border: 2px solid #fff;
}

/* Start/End */
.timeline-point.start::before,
.timeline-point.end::before {
  background: #FFD700;
  box-shadow: 0 0 12px #FFD700, 0 0 20px #FFA500;
  width: 20px;
  height: 20px;
}

/* Pause */
.timeline-point.pause::before {
  background: #00BFFF; /* Blau für Pause */
  box-shadow: 0 0 12px #00BFFF, 0 0 20px #87CEFA;
}

/* Zeit links, Ort rechts */
.timeline-point .time {
  width: 120px;
  text-align: right;
  font-weight: 600;
  color: #FFFAFA; /* helle Schrift */
  text-shadow: 0 0 2px #FF4500;
}

.timeline-point .place {
  width: 200px;
  text-align: left;
  font-weight: 700;
  color: #FFFAFA;
  text-shadow: 0 0 2px #FF4500;
}

/* Responsive: mobil */
@media (max-width: 768px) {
  .timeline-point {
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 0;
    margin-left: -10px;
  }

  .timeline-point .time,
  .timeline-point .place {
    width: 100%;
    margin: 0 0 0 40px;
    text-align: left;
  }

  .timeline-point::before {
    left: 10px;
  }

  .christmas-timeline::before {
    left: 20px;
  }
}/* End custom CSS */