/* shared.css — Her Path Career Guide */
:root {
  --bg: #0b0c0f;
  --surface: #111318;
  --surface2: #181c24;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.15);
  --text: #e8e4de;
  --muted: #7a7870;
  --accent: #c4a882;
  --accent2: #7eb8c4;
  --accent3: #b4c47e;
  --accent4: #c47e9a;
  --red: #e05c5c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 56px;
  background: rgba(11,12,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
}
nav ul { display: flex; gap: 0; list-style: none; }
nav ul li a {
  display: block; padding: 0 1rem;
  height: 56px; line-height: 56px;
  text-decoration: none; color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
nav ul li a:hover, nav ul li a.active { color: var(--text); }
nav ul li a.active { border-bottom: 1px solid var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--muted); transition: all 0.25s; }
.page-hero {
  padding: 9rem 2.5rem 4rem;
  max-width: 1100px; margin: 0 auto;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; color: var(--accent);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
}
h1 em { font-style: italic; color: var(--accent); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--accent); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 0.75rem;
}
.page-lead {
  font-size: 1rem; color: var(--muted);
  max-width: 600px; margin-top: 1rem;
}
section {
  max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem;
}
.divider {
  width: calc(100% - 5rem); max-width: 1050px;
  height: 1px; background: var(--border);
  margin: 0 auto;
}
.tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; padding: 0.25rem 0.6rem;
  border: 1px solid var(--border-bright);
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.tag.hot { border-color: rgba(196,168,130,0.3); color: var(--accent); }
.tag.grow { border-color: rgba(180,196,126,0.3); color: var(--accent3); }
.tag.intl { border-color: rgba(126,184,196,0.3); color: var(--accent2); }
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
footer .footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--muted); font-style: italic;
}
footer .footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  nav ul { display: none; position: absolute; top: 56px; left: 0; right: 0; flex-direction: column; background: rgba(11,12,15,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0.5rem 0; z-index: 99; }
  nav.open ul { display: flex; }
  nav ul li a { height: auto; line-height: 1; padding: 0.9rem 2rem; font-size: 0.82rem; }
  nav ul li a.active { border-bottom: none; border-left: 2px solid var(--accent); padding-left: calc(2rem - 2px); }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  section { padding: 3rem 1.5rem; }
}
