/* Print styles for resumes */
@media print {
  body {
    font-size: 11pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  .no-print { display: none !important; }
  .page-break { page-break-before: always; }
  a { color: #000; text-decoration: none; }
  .resume-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }
  /* One-page resumes: prevent overflow */
  .one-page {
    max-height: 10.5in;
    overflow: hidden;
  }
}

/* Screen styles */
@media screen {
  body {
    background: #f3f4f6;
  }
  .resume-container {
    max-width: 8.5in;
    margin: 2rem auto;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 0.75in 0.75in;
    border-radius: 4px;
  }
  .nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #111827;
    color: #fff;
    padding: 0.75rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 50;
    font-size: 0.875rem;
  }
  .nav-bar a {
    color: #93c5fd;
    text-decoration: none;
  }
  .nav-bar a:hover { text-decoration: underline; }
  body { padding-top: 3rem; }
}

/* Shared resume typography */
.resume-name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #111827;
}
.resume-tagline {
  font-size: 0.95rem;
  color: #4b5563;
  margin-top: 0.15rem;
}
.resume-contact {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e40af;
  border-bottom: 2px solid #1e40af;
  padding-bottom: 0.15rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.job-title {
  font-weight: 700;
  color: #111827;
}
.job-company {
  color: #374151;
}
.job-date {
  font-size: 0.8rem;
  color: #6b7280;
}
.job-bullets {
  list-style: disc;
  margin-left: 1.25rem;
  font-size: 0.85rem;
  color: #374151;
}
.job-bullets li {
  margin-bottom: 0.15rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.85rem;
}
.skill-category {
  font-weight: 600;
  color: #111827;
  font-size: 0.8rem;
}
.skill-items {
  color: #4b5563;
  font-size: 0.8rem;
}
