/* Start custom CSS for html, class: .elementor-element-2dce6c6 *//* ===== Alapstílus ===== */
.timeline-wrapper {
  background-color: #;
  color: #EDEDED;
  font-family: "Lato", sans-serif;
  padding: 80px 20px;
}

.timeline-wrapper h2 {
  text-align: center;
  color: #C5B990;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

/* ===== Timeline struktúra ===== */
.timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 1px solid #C9A66B;
}

.timeline-item {
  position: relative;
  margin-bottom: 45px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  width: 0px;
  height: 0px;
  background-color: #C9A66B;
  border-radius: 50%;
  border: 0px solid #072F2A;
}

.timeline-date {
  color: #C5B990;
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-content h3 {
  color: #fff;
  font-size: 20px;
  margin: 2px 0;
}

.timeline-content p {
  color: #C9C9C9;
  font-size: 15px;
  margin: 2px 0 0;
}

/* ===== Készségek szekció ===== */
.skills-section {
  max-width: 950px;
  margin: 80px auto 0;
  padding: 40px;
  background-color: #192F2C;
  border-radius: 16px;
  
}

.skills-section h3 {
  color: #C5B990;
  margin-top: 30px;
  font-size: 22px;
}

.skills-section ul {
  margin: 10px 0 25px 20px;
}

.skills-section li {
  margin-bottom: 6px;
  line-height: 1.5;
}


/* ===== Scroll animáció – belépéskor fade + slide ===== */
.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

/* amikor a JS hozzáadja az 'in-view' class-t */
.timeline-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* kicsi késleltetés egymás után érkező elemekhez */
.timeline-item:nth-child(2) { transition-delay: .1s; }
.timeline-item:nth-child(3) { transition-delay: .2s; }
.timeline-item:nth-child(4) { transition-delay: .3s; }
.timeline-item:nth-child(5) { transition-delay: .4s; }



/* ===== Responsív ===== */
@media (max-width: 768px) {
  .timeline {
    padding-left: 25px;
  }
  .timeline-content h3 {
    font-size: 18px;
  }
  
  .skills-section ul {
  margin: 0px 0px 0px -30px;
}

.skills-section li {
  margin-bottom: 6px;
  line-height: 1.5;
}
  
}/* End custom CSS */