/* metrics/assets/global.css */

/* ── Global font + base ── */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #f6f5f2;
}

/* ── Smooth transitions on interactive elements ── */
a { transition: opacity 0.15s ease, color 0.15s ease; }

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15,23,42,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(2,6,23,0.06);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.site-brand:hover { opacity: 0.82; text-decoration: none; }
.site-brand img {
  height: 76px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.site-nav a:hover { background: #f1f5f9; color: #0f172a; text-decoration: none; }
.site-nav a.active { background: #F0FDFA; color: #0f766e; }

/* ── Global footer ── */
.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,0.10);
  margin-top: 40px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer-copy {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.site-footer-meta {
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 480px) {
  .site-brand { font-size: 14px; }
  .site-nav a { padding: 5px 8px; font-size: 12px; }
  .site-footer-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}
