/* =========================================================
   ABOUT - Vinarija Kroz Vreme / Timeline (Figma 1301:2685)
   ========================================================= */

.about-timeline {
  /* background: #ede9e4; */
  background-image: url("../../../assets/icons/hronology.png");
  padding: 90px 0 110px;
  position: relative;
}

.about-timeline__head {
  text-align: center;
  max-width: 474px;
  margin: 0 auto 90px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.about-timeline__subtitle {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 11.2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191d23;
}

.about-timeline__title {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-size: clamp(34px, 3.125vw, 60px);
  line-height: 1.177;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(155deg, #191d23 26.5%, #796220 83.8%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-timeline__desc {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 25.5px;
  color: rgba(25, 29, 35, 0.8);
  margin: 0;
}

/* List with central vertical line */
.about-timeline__list {
  position: relative;
  max-width: 1014px;
  margin: 0 auto;
}

.about-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0.5px;
  /* background: linear-gradient(
    90deg,
    rgba(25, 29, 35, 0) 0%,
    #191d23 15.38%,
    #191d23 85.1%,
    rgba(25, 29, 35, 0) 100%
  ); */
  transform: translateX(-50%);

  background: linear-gradient(
    180deg,
    rgba(25, 29, 35, 0) 0%,
    rgba(25, 29, 35, 1) 8%,
    rgba(25, 29, 35, 1) 92%,
    rgba(25, 29, 35, 0) 100%
  );
}

.about-timeline__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}

.about-timeline__row:last-child {
  margin-bottom: 0;
}

/* Image goes RIGHT on even rows, LEFT on odd */
.about-timeline__row--right .about-timeline__text {
  order: 1;
}
.about-timeline__row--right .about-timeline__media {
  order: 2;
}
.about-timeline__row--left .about-timeline__media {
  order: 1;
}
.about-timeline__row--left .about-timeline__text {
  order: 2;
}

.about-timeline__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e1ded5;
  border: 6px solid #191d23;
  z-index: 2;
}

.about-timeline__dot::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #e1ded5;
}

/* Media */
.about-timeline__media {
  display: flex;
  justify-content: center;
}

.about-timeline__media img {
  width: 370px;
  max-width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-timeline__row--right .about-timeline__media img {
  transform: rotate(2.97deg);
}

.about-timeline__row--left .about-timeline__media img {
  transform: rotate(-2.97deg);
}

/* Text */
.about-timeline__text {
  max-width: 423px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-timeline__year {
  font-family: "trajan-pro-3", serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 77px;
  letter-spacing: -3.6px;
  color: #bd9831;
}

.about-timeline__heading {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-size: 30.8px;
  line-height: 35.2px;
  text-transform: uppercase;
  color: #191d23;
  margin: 0;
}

.about-timeline__body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.38);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .about-timeline {
    padding: 70px 0 80px;
  }
  .about-timeline__row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
    text-align: center;
  }
  .about-timeline__row--right .about-timeline__text,
  .about-timeline__row--left .about-timeline__text {
    order: 2;
  }
  .about-timeline__row--right .about-timeline__media,
  .about-timeline__row--left .about-timeline__media {
    order: 1;
  }
  .about-timeline__text {
    max-width: 100%;
    align-items: center;
  }
  .about-timeline__line {
    display: none;
  }
  .about-timeline__dot {
    display: none;
  }
  .about-timeline__media img {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 575px) {
  .about-timeline {
    padding: 50px 0 60px;
  }
  .about-timeline__head {
    margin-bottom: 60px;
  }
  .about-timeline__row {
    gap: 18px;
    margin-bottom: 48px;
  }
  .about-timeline__year {
    font-size: 56px;
    line-height: 60px;
    letter-spacing: -2px;
  }
  .about-timeline__heading {
    font-size: 26px;
    line-height: 30px;
  }
  .about-timeline__media img {
    width: 240px;
    height: 300px;
  }
}
