/* ===== CV CONTAINER ===== */
.cv-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.cv-column-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cv-column-title i {
  color: var(--color-accent);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    var(--color-accent) 0%,
    rgba(99, 146, 185, 0.3) 50%,
    transparent 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: calc(-1 * var(--space-8) - 6px);
  top: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #6FC0F2 0%, #5BACDE 100%);
  border: 3px solid white;
  border-radius: 50%;
  z-index: 1;
  box-shadow:
    0 0 0 3px rgba(99, 146, 185, 0.1),
    0 0 15px rgba(99, 146, 185, 0.4);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.2);
  box-shadow:
    0 0 0 4px rgba(99, 146, 185, 0.15),
    0 0 20px rgba(99, 146, 185, 0.5);
}

.timeline-content {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99, 146, 185, 0.1);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(99, 146, 185, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow:
    0 8px 24px rgba(99, 146, 185, 0.15),
    0 0 0 1px rgba(99, 146, 185, 0.1);
  border-color: rgba(99, 146, 185, 0.2);
}

.timeline-date {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(99, 146, 185, 0.1) 0%, rgba(99, 146, 185, 0.05) 100%);
  border: 1px solid rgba(99, 146, 185, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.timeline-company {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.timeline-desc {
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ===== SKILLS ===== */
.cv-skills {
  margin-bottom: var(--space-12);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.skill-category {
  background: var(--color-bg-primary);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
}

.skill-category-title {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

/* Skill Bars */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.skill-bar {
  width: 100%;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.skill-name {
  font-size: var(--text-sm);
  font-weight: 500;
}

.skill-percent {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.skill-progress {
  height: 8px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  border-radius: var(--radius-full);
  transition: width 1s ease-out;
}

/* Skill Tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.skill-tag {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3);
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* ===== LANGUAGES ===== */
.cv-languages {
  margin-bottom: var(--space-6);
}

.languages-grid {
  display: flex;
  gap: var(--space-8);
}

.language-item {
  text-align: center;
}

.language-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-3);
}

.language-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 3;
}

.circle-fill {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease-out;
}

.language-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.language-name {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.language-level {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
