/* resume.css */
.resume-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
}

.resume-card {
  background: rgba(2,6,9,0.8);
  border: 1px solid var(--green-border);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto 2rem;
  box-shadow: 0 0 60px rgba(0,255,136,0.04);
}

/* Header */
.res-header { margin-bottom: 1rem; }
.res-name {
  font-family: 'Orbitron', monospace; font-size: 1.8rem; font-weight: 900;
  color: #fff; letter-spacing: 3px; margin-bottom: 0.5rem;
}
.res-contact-line { font-size: 0.72rem; color: var(--text-muted); }
.res-contact-line a { color: var(--cyan); text-decoration: none; }
.res-contact-line a:hover { color: #fff; }
.res-divider { height: 1px; background: var(--green-border); margin: 1.5rem 0; }

/* Sections */
.res-section { margin-bottom: 2rem; }
.res-section-title {
  font-family: 'Orbitron', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; color: var(--green); text-transform: uppercase;
  border-bottom: 1px solid var(--green-border); padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
.res-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }

/* Education */
.res-edu-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(0,255,136,0.06);
}
.res-edu-row:last-child { border-bottom: none; }
.res-edu-degree { font-size: 0.8rem; color: #fff; font-weight: 500; margin-bottom: 0.2rem; }
.res-edu-inst { font-size: 0.7rem; color: var(--cyan); }
.res-edu-right { text-align: right; flex-shrink: 0; padding-left: 1rem; }
.res-edu-year { font-size: 0.68rem; color: var(--text-dim); margin-bottom: 0.2rem; }
.res-edu-cgpa { font-size: 0.72rem; color: var(--green); font-weight: 700; }

/* Skills */
.res-skills-grid { display: flex; flex-direction: column; gap: 0.6rem; }
.res-skill-row { display: flex; gap: 1.5rem; font-size: 0.75rem; }
.res-sk-key { color: var(--text-dim); min-width: 100px; flex-shrink: 0; letter-spacing: 1px; }
.res-sk-val { color: var(--text-muted); }

/* Jobs */
.res-job { margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(0,255,136,0.06); }
.res-job:last-child { border-bottom: none; margin-bottom: 0; }
.res-job-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.res-job-title { font-size: 0.82rem; color: #fff; font-weight: 500; }
.res-job-date { font-size: 0.65rem; color: var(--text-dim); letter-spacing: 1px; flex-shrink: 0; padding-left: 1rem; }
.res-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.res-list li { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; padding-left: 1rem; position: relative; }
.res-list li::before { content: '▸'; position: absolute; left: 0; color: var(--green); font-size: 0.6rem; top: 0.3rem; }

/* Certs */
.res-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.res-cert {
  padding: 0.3rem 0.9rem; border: 1px solid var(--green-border);
  font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.5px;
}

.resume-note { max-width: 860px; margin: 0 auto; }
.resume-note .t-comment { font-size: 0.7rem; color: var(--text-dim); line-height: 2; }

@media(max-width: 600px) {
  .resume-card { padding: 1.5rem; }
  .res-edu-row { flex-direction: column; gap: 0.3rem; }
  .res-edu-right { text-align: left; padding-left: 0; }
  .res-job-header { flex-direction: column; gap: 0.2rem; }
  .res-job-date { padding-left: 0; }
}
