/* overview.css — Overview page sections. */

/* Overview scroll area */
.overview-scroll-area {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px 32px;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.22) transparent;
}

/* Overview inner content */
.ov-inner {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.ov-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.ov-pfp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

body.light-mode .ov-pfp {
  border-color: rgba(0,0,0,0.1);
}

.ov-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ov-name {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

body.light-mode .ov-name { color: #111; }

.ov-subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

body.light-mode .ov-subtitle { color: rgba(0,0,0,0.45); }

/* Resume and CV sit side by side, wrapping on narrow screens. */
.ov-doc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.ov-resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.2s ease;
}

.ov-resume-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

body.light-mode .ov-resume-btn {
  color: rgba(0,0,0,0.7);
}
body.light-mode .ov-resume-btn:hover {
  color: #000;
  background: rgba(0,0,0,0.05);
}

.ov-section {
  margin-bottom: 24px;
}

.ov-section-label {
  font-family: 'GeistPixelSquare', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  text-transform: uppercase;
}

body.light-mode .ov-section-label { color: rgba(0,0,0,0.35); }

.ov-body {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

body.light-mode .ov-body { color: rgba(0,0,0,0.65); }

/* Experience rows */
.ov-exp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ov-exp-row {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body.light-mode .ov-exp-row {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

.ov-exp-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

body.light-mode .ov-exp-title { color: #111; }

.ov-exp-org {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

body.light-mode .ov-exp-org { color: rgba(0,0,0,0.45); }

.ov-exp-date {
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

body.light-mode .ov-exp-date { color: rgba(0,0,0,0.3); }

/* Project rows */
.ov-project-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ov-project-row {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.2s ease;
}

.ov-project-row:hover {
  background: rgba(255,255,255,0.08);
}

/* Entries with no public link keep the row treatment but no hover affordance. */
.ov-project-row.is-static:hover {
  background: rgba(255,255,255,0.04);
}

body.light-mode .ov-project-row.is-static:hover {
  background: rgba(0,0,0,0.02);
}

body.light-mode .ov-project-row {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}
body.light-mode .ov-project-row:hover {
  background: rgba(0,0,0,0.05);
}

.ov-project-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

body.light-mode .ov-project-title { color: #111; }

.ov-project-desc {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

body.light-mode .ov-project-desc { color: rgba(0,0,0,0.5); }

.ov-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.ov-tag {
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}

body.light-mode .ov-tag {
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.5);
}

/* Awards */
.ov-awards-list, .ov-certs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ov-award-row {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body.light-mode .ov-award-row {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

.ov-award-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

body.light-mode .ov-award-title { color: #111; }

.ov-award-sub {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

body.light-mode .ov-award-sub { color: rgba(0,0,0,0.4); }

/* Certs */
.ov-cert-row {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body.light-mode .ov-cert-row {
  color: rgba(0,0,0,0.65);
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

.ov-cert-issuer {
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  margin-left: 6px;
}

body.light-mode .ov-cert-issuer { color: rgba(0,0,0,0.35); }

/* Links section */
.ov-links-section {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

body.light-mode .ov-links-section {
  border-color: rgba(0,0,0,0.08);
}

.ov-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ov-links a {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ov-links a:hover { color: #fff; }

body.light-mode .ov-links a { color: rgba(0,0,0,0.5); }
body.light-mode .ov-links a:hover { color: #000; }

.ov-link-sep {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
}

body.light-mode .ov-link-sep { color: rgba(0,0,0,0.15); }

/* Mobile responsive */
@media (max-width: 600px) {
  .overview-mode .glass-card {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .overview-scroll-area {
    padding: 12px 16px 24px;
  }
}
