/* gti-lms-skin.css
 *
 * Lightly wash GTI colors / typography over the stock Open edX LMS templates
 * so the learner dashboard, course home, and account pages feel part of
 * the same product as /org/, /community/, /mentor/. Only touches things
 * we're confident about — headers, primary buttons, links.
 */

/* -- GTI top nav -- */
.gti-top-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: var(--gti-space-6, 1.5rem);
  padding: 0.5rem 1.25rem;
  background: #0f172a;
  color: #f1f5f9;
  font-family: var(--gti-font-sans, "Inter", system-ui, sans-serif);
  border-bottom: 1px solid #1e293b;
}
.gti-top-nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gti-color-primary, #14b8a6);
  text-decoration: none;
  font-size: 0.95rem;
}
.gti-top-nav-brand:hover { color: #5eead4; }
.gti-top-nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gti-top-nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 120ms;
}
.gti-top-nav-links a:hover {
  background: rgba(20, 184, 166, 0.15);
  color: #ccfbf1;
}

/* -- LMS chrome washes -- */
body {
  font-family: var(--gti-font-sans, "Inter", system-ui, sans-serif);
  color: var(--gti-color-text, #111827);
}

/* Primary CTA buttons across the LMS */
.btn-primary, .btn-brand,
.action-primary,
a.action-enroll,
button[type="submit"].btn {
  background: var(--gti-color-primary, #14b8a6) !important;
  border-color: var(--gti-color-primary, #14b8a6) !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-brand:hover,
.action-primary:hover {
  background: var(--gti-color-primary-hover, #0f766e) !important;
  border-color: var(--gti-color-primary-hover, #0f766e) !important;
}

/* Links inside the LMS content area (not our top nav) */
.wrapper-main a:not(.btn):not(.action-primary),
.content-wrapper a:not(.btn) {
  color: var(--gti-color-primary, #14b8a6);
}
.wrapper-main a:not(.btn):not(.action-primary):hover {
  color: var(--gti-color-primary-hover, #0f766e);
}
