/* Resume Page Styles */

.resume-section {
  padding-top: 8rem;
}

.resume-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.resume-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.resume-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.resume-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.resume-contact .divider {
  color: var(--text-muted);
}

.resume-contact a {
  transition: color 0.2s;
}

.resume-contact a:hover {
  color: var(--text-primary);
}

/* Section Blocks */
.resume-section-block {
  margin-bottom: 2.5rem;
}

.resume-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), linear-gradient(90deg, var(--purple), var(--accent));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

/* Resume Items */
.resume-item {
  margin-bottom: 1.75rem;
}

.resume-item:last-child {
  margin-bottom: 0;
}

.resume-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.resume-item-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.resume-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

.resume-meta {
  text-align: right;
  flex-shrink: 0;
}

.resume-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.resume-location {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Bullet Points */
.resume-bullets {
  list-style: none;
  padding-left: 0;
}

.resume-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.resume-bullets li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Skills Section */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skill-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.skill-label {
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
}

.skill-value {
  color: var(--text-secondary);
}

/* Interests */
.interests-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Download Button */
.resume-download {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .resume-section {
    padding-top: 10rem;
  }

  .resume-header h1 {
    font-size: 1.75rem;
  }

  .resume-contact {
    font-size: 0.8rem;
  }

  .resume-item-header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .resume-meta {
    text-align: left;
  }

  .resume-date,
  .resume-location {
    display: inline;
    font-size: 0.8rem;
  }

  .resume-date::after {
    content: ' - ';
  }

  .skill-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}
