/* ===== Dark theme — study.dev ===== */
:root {
  --bg: #0d0b09;
  --text: #f5f2ee;
  --text-muted: #a39c92;
  --accent: #e8a33d;
  --accent-contrast: #0d0b09;
  --border: rgba(245, 242, 238, 0.12);
  --card-bg: rgba(245, 242, 238, 0.04);
  --nav-bg: rgba(13, 11, 9, 0.8);
  --grid-line: rgba(245, 242, 238, 0.04);
  --glow: rgba(232, 163, 61, 0.18);
  --core-bg: rgba(232, 163, 61, 0.35);
  --core-bg-outer: rgba(232, 163, 61, 0.08);
  --icon-bg: rgba(232, 163, 61, 0.12);
  --chip-bg: #1c1712;
  --chip-text: #f5f2ee;
}

.education-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.education-link:hover {
    color: #f5a623;
    cursor: pointer;
}

.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.clickable-card {
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.clickable-card:hover {
  transform: translateY(-6px);
}
