@import url("style.css");

/* ========== GENERAL ========== */
.about-bg {
  margin-top: -6vh;
  color: #dfe9ef;
}

/* ========== HERO SECTION ========== */
.hero-about {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vh, 6rem) 0;
  overflow: hidden;
  text-align: center;
}

.hero-about__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-about__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: min(92%, 980px);
}

.hero-about__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.hero-about__title .accent {
  color: var(--accent);
  text-shadow: 0 4px 24px rgba(0, 170, 255, 0.12);
}

.hero-about__lead {
  color: #dcecf8;
  font-size: 1rem;
}

/* ========== ABOUT SECTION ========== */
.about__text h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: #eaf6ff;
}

.about__text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #dfe9ef;
}

.about__story {
  line-height: 1.8;
  margin-top: 1rem;
  color: #dfe9ef;
  font-size: 1.05rem;
}

.about__quote {
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
  padding-left: 1rem;
  font-style: italic;
}

/* ========== PILLS ========== */
.pill {
  display: inline-block;
  background: rgba(0, 170, 255, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  margin: 0.2rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* ========== Timeline ========== */
.timeline-modern {
  position: relative;
  margin-top: 2rem;
  padding-left: 2.4rem;
}

.timeline-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.6;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.6rem;
  padding-left: 2rem;
}

.timeline-year {
  position: absolute;
  left: -1.2rem;
  top: 0.2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.25);
  z-index: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  backdrop-filter: blur(4px);
  margin-top: 1%;
}

.timeline-content h3 {
  margin: 0.4rem 0;
  color: #dfe9ef;
  font-weight: 600;
}

.timeline-content p {
  color: #b5c2ca;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-modern {
    padding-left: 1.6rem;
  }

  .timeline-year {
    left: -0.8rem;
    font-size: 0.8rem;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-about__title {
    font-size: 2.4rem;
  }

  .about__text h2 {
    font-size: 1.6rem;
  }
}
