.timeline-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: white;
}

.timeline-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.timeline-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  padding: 0 12.5%; /* 100% - 75% = 25%, άρα 12.5% δεξιά και αριστερά */
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-text {
  max-width: 100%;
}

.timeline-text h2 {
  font-size: 2.5rem;
  margin: 0;
  color:#fff;
}

.timeline-text p {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}

.timeline-bar {
  position: relative;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.timeline-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: white;
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  z-index: 2;
  cursor: pointer;
  transition: background 0.3s ease;
}

.timeline-bullet.active-bullet {
  background: black;
}

#slide-time {
  position: absolute;
  top: 120%;
  transform: translateX(-50%);
  background: white;
  color: black;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
}
