/* ====== RESUME PAGE ====== */

/* ====== CONTACT HEADER ====== */
.resume-contact {
  text-align: center;
  padding-bottom: 48px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(200, 200, 208, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.resume-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  line-height: 2;
}

.contact-details a {
  color: var(--accent);
  border-bottom: 1px solid rgba(200, 200, 208, 0.2);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-details a:hover {
  color: var(--text-bright);
  border-color: var(--text-bright);
}

.contact-sep {
  color: rgba(136, 136, 136, 0.35);
  margin: 0 2px;
}

/* ====== RESUME SECTION ====== */
.resume-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(200, 200, 208, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.resume-section:last-of-type {
  border-bottom: none;
  padding-bottom: 80px;
}

/* ====== SECTION HEADING ====== */
.section-heading {
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 200, 208, 0.12);
}

/* ====== RESUME ENTRY (job / education) ====== */
.resume-entry {
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 1px solid rgba(200, 200, 208, 0.12);
  transition: border-color 0.4s ease;
}

.resume-entry:hover {
  border-left-color: rgba(200, 200, 208, 0.35);
}

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

/* ====== ENTRY HEADER ====== */
.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.entry-titles {
  flex: 1;
  min-width: 0;
}

.entry-role {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.entry-company {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
}

.entry-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 2px;
}

.entry-location {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.7;
}

.entry-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ====== ENTRY DETAILS (bullet list) ====== */
.entry-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entry-details li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.entry-details li:last-child {
  margin-bottom: 0;
}

.entry-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 1px;
  background: var(--text-dim);
  opacity: 0.5;
}

/* ====== CERTIFICATIONS / AWARDS LIST ====== */
.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.cert-list li:last-child {
  margin-bottom: 0;
}

.cert-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(200, 200, 208, 0.35);
  border-radius: 50%;
}

/* ====== SKILLS GRID ====== */
.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-group {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.skill-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 200, 208, 0.06);
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
  min-width: 90px;
  text-align: center;
}

.skill-items {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ====== RESPONSIVE - TABLET ====== */
@media (max-width: 768px) {
  .resume-contact {
    padding-bottom: 36px;
  }

  .contact-details {
    font-size: 10px;
    gap: 6px;
  }

  .contact-sep {
    display: none;
  }

  .contact-details {
    gap: 4px 16px;
  }

  .resume-section {
    padding: 32px 0;
  }

  .resume-section:last-of-type {
    padding-bottom: 60px;
  }

  .section-heading {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 28px;
  }

  .resume-entry {
    margin-bottom: 32px;
    padding-left: 14px;
  }

  .entry-header {
    flex-direction: column;
    gap: 4px;
  }

  .entry-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .entry-role {
    font-size: clamp(18px, 4vw, 22px);
  }

  .skill-group {
    flex-direction: column;
    gap: 6px;
  }

  .skill-label {
    min-width: auto;
    align-self: flex-start;
  }
}

/* ====== RESPONSIVE - MOBILE ====== */
@media (max-width: 480px) {
  .resume-name {
    font-size: 28px;
  }

  .contact-details {
    flex-direction: column;
    gap: 4px;
  }

  .resume-section {
    padding: 28px 0;
  }

  .resume-entry {
    border-left: none;
    border-top: 1px solid rgba(200, 200, 208, 0.1);
    padding-left: 0;
    padding-top: 20px;
    margin-bottom: 28px;
  }

  .resume-entry:hover {
    border-left-color: transparent;
    border-top-color: rgba(200, 200, 208, 0.3);
  }

  .entry-role {
    font-size: 20px;
  }

  .entry-details li {
    font-size: 13px;
  }

  .cert-list li {
    font-size: 14px;
  }

  .skill-items {
    font-size: 13px;
  }
}
