/* ============================================================
   Custom styles for Ivander Reynard Dinata portfolio
   Accent color matches template: #D63447
   ============================================================ */

/* ---------- Skills: progress bars + soft-skill tags ---------- */
.skills-group {
  margin-bottom: 3rem;
}
.skills-group .skills-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
  border-left: 3px solid #D63447;
  padding-left: 12px;
}

.skill-progress {
  margin-bottom: 1.4rem;
}
.skill-progress .skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
  color: #fff;
  font-weight: 600;
}
.skill-progress .skill-info .pct {
  color: #D63447;
}
.progress {
  height: 8px;
  background-color: #212121;
  border-radius: 50px;
  overflow: hidden;
}
.progress .progress-bar {
  background-color: #D63447;
  border-radius: 50px;
  width: 0;
  transition: width 1.4s ease;
}

/* Soft skills as tags */
.soft-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.soft-skill-tags .tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 8px 20px;
  color: #fff;
  font-size: .95rem;
  transition: .3s all ease;
}
.soft-skill-tags .tag:hover {
  border-color: #D63447;
  background-color: #D63447;
}

/* ---------- Experience & Education timeline ---------- */
.timeline {
  position: relative;
  padding-left: 28px;
  margin: 0;
  list-style: none;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(255,255,255,.15);
}
.timeline .timeline-item {
  position: relative;
  padding-bottom: 2.2rem;
}
.timeline .timeline-item:last-child { padding-bottom: 0; }
.timeline .timeline-item:before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D63447;
  box-shadow: 0 0 0 4px rgba(214,52,71,.2);
}
.timeline .timeline-period {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D63447;
  margin-bottom: .25rem;
}
.timeline .timeline-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: .15rem;
}
.timeline .timeline-sub {
  color: #b3b3b3;
  margin-bottom: .5rem;
}
.timeline .timeline-desc {
  color: #cfcfcf;
  font-size: .95rem;
}

/* ---------- Section label tweak ---------- */
.contact-info-val { color: #fff; }
.contact-info-val:hover { color: #D63447; }

/* ---------- Footer social active color ---------- */
.footer-site-social li a:hover { color: #D63447; }
