/*
 * me.css — Styles for the Me page
 */

.me-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem;
}

/* ── Sections ────────────────────────────────────────────── */

.me-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(60, 70, 90, 0.08);
}

.me-section:last-child {
  border-bottom: none;
}

/* ── Introduction ────────────────────────────────────────── */

.me-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #1c1f26;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.me-lead {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: #6b7a8a;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.me-bio {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.8;
}

.me-bio p + p {
  margin-top: 1em;
}

/* ── Section titles ──────────────────────────────────────── */

.me-section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c1f26;
  margin-bottom: 1.6rem;
  position: relative;
  display: inline-block;
}

.me-section-title::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(90deg, #3d6b8f, transparent);
  opacity: 0.4;
}

/* ── Skills list ─────────────────────────────────────────── */

.me-skills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.8rem;
}

.me-skill-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(60, 70, 90, 0.06);
}

.me-skill-item:last-child {
  border-bottom: none;
}

.me-skill-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #1c1f26;
  min-width: 200px;
  flex-shrink: 0;
}

.me-skill-detail {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.me-consulting {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #6b7a8a;
  margin-top: 1rem;
}

.me-link {
  color: #3d6b8f;
  text-decoration: none;
  transition: color 0.2s;
}

.me-link:hover { color: #1c1f26; }

/* ── Contact ─────────────────────────────────────────────── */

.me-contact-note {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #6b7a8a;
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

.me-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.me-contact-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(60, 70, 90, 0.06);
}

.me-contact-item:last-child {
  border-bottom: none;
}

.me-contact-type {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  min-width: 110px;
  flex-shrink: 0;
}

.me-contact-value {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #1c1f26;
  text-decoration: none;
  transition: color 0.2s;
}

a.me-contact-value:hover { color: #3d6b8f; }

/* ── Emergency numbers ───────────────────────────────────── */

.me-emergency {
  background: rgba(60, 70, 90, 0.03);
  border: 1px solid rgba(60, 70, 90, 0.08);
  border-radius: 2px;
  padding: 1.4rem 1.6rem;
}

.me-emergency-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.me-emergency-note {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.me-emergency-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.me-emergency-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.me-emergency-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #9ca3af;
  min-width: 310px;
}

.me-emergency-number {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: #6b7a8a;
  text-decoration: none;
  transition: color 0.2s;
}

.me-emergency-number:hover { color: #1c1f26; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 480px) {
  .me-skill-item  { flex-direction: column; gap: 0.2rem; }
  .me-skill-label { min-width: unset; }
  .me-contact-item { flex-direction: column; gap: 0.2rem; }
  .me-contact-type { min-width: unset; }
  .me-emergency-item { flex-direction: column; gap: 0.1rem; }
  .me-emergency-label { min-width: unset; }
}
