/* ═══════════════════════════════════════════════
   TIMELINE / HISTÒRIA — Widget: anigami_timeline
   ═══════════════════════════════════════════════ */

.anigami-timeline-section {
  position: relative;
}

/* ── Capçalera ── */
.historia-header {
  text-align: center;
  margin-bottom: 70px;
}
.historia-header h2 {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.historia-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin: 0;
}

/* ── Contenidor timeline ── */
.anigami-timeline-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline p{
	color:rgba(255,255,255,.7);
	line-height:24px;
	font-size:15px;
}
.timeline p strong{
	color:white;
}
/* SVG de línies ── */
.timeline-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.timeline-svg line {
  stroke: #fff;
  stroke-width: 2;
}

/* ── Ítem ── */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding: 28px 30px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s;
  width: 900px;
  max-width: 100%;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:nth-child(odd)  { margin-left: 0;     margin-right: auto; }
.timeline-item:nth-child(even) { margin-left: 100px; margin-right: auto; }

.timeline-item:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* ── Punt ── */
.timeline-dot {
  position: absolute;
  left: -75px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 3;
}
.timeline-item:hover .timeline-dot {
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* ── Textos ── */
.timeline-year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.timeline-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  margin: 0;
}
.timeline-item:hover .timeline-text {
  color: rgba(255, 255, 255, 0.9);
}
.timeline-text strong {
  color: #fff;
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .timeline {
    max-width: 100%;
    padding-left: 80px;
  }
  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .timeline-item:nth-child(even) { margin-left: 60px !important; }
  .timeline-dot { left: -55px; }
}
@media (max-width: 600px) {
  .timeline { padding-left: 40px; }
  .timeline-item:nth-child(even) { margin-left: 30px !important; }
  .timeline-dot { left: -26px; }
}
@media (max-width: 480px) {
  .timeline { padding-left: 30px; }
  .timeline-item:nth-child(even) { margin-left: 0 !important; }
  .timeline-dot { left: -20px; }
}
