/* ---------------------------------------------
   Google-Fonts & Reset
--------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Indie+Flower&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #e0e0e0;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a3d;
}

/* ---------------------------------------------
   HEADER
--------------------------------------------- */
.tl-header {
  position: relative;
  height: 250px;
  background: url('Bilder/Bild5.jpeg') center/cover no-repeat;
}
.tl-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Krona One', sans-serif;
  font-size: 4.5rem;
  color: white;
}

/* ---------------------------------------------
   TIMELINE CONTAINER
--------------------------------------------- */
.tl-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px;
}
.tl-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Mittellinie */
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #1a1a3d;
  z-index: 1;
}
/* Pfeil nach unten */
.tl-arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #1a1a3d;
  z-index: 2;
}

/* ---------------------------------------------
   BUBBLE & DATE
--------------------------------------------- */
.bubble {
  position: relative;
  background: #777;
  border-radius: 30px;
  /* HIER ENTFERNT ODER GEÄNDERT: */
  overflow: visible;    /* war vorher hidden */
}

/* Datum außen neben der Bubble */
.bubble > .date {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Imprima', sans-serif;
  font-size: 1.4rem;
  color: #1a237e;
  z-index: 2;
}
.tl-left .bubble > .date {
  right: -60px;
  writing-mode: vertical-lr;
}
.tl-right .bubble > .date {
  left: -60px;
  writing-mode: vertical-rl;
}

/* ---------------------------------------------
   BUBBLE HEADER
--------------------------------------------- */
.bubble-header {
  padding: 20px;
}
.bubble-header h2 {
  font-family: 'Indie Flower', cursive;
  font-size: 2rem;
  color: white;
}

/* ---------------------------------------------
   BUBBLE BODY
--------------------------------------------- */
.bubble-body {
  background: #aaa;
  padding: 20px;
}
.bubble-body p {
  font-family: 'Indie Flower', cursive;
  font-size: 1rem;
  line-height: 1.3;
  color: #1a1a3d;
}