/* ==========================================================================
   Katebe brand layer -- sits on top of the ProMan template stylesheets.
   The purple/amber -> teal/amber recolour was applied directly in
   bootstrap.min.css and style.css (var(--brand-*, <original-hex>), see
   base.njk's :root override) so there is only ever ONE live palette in the
   build. This file adds what the template did not have: display/mono
   typography, and layout for content blocks this site needed that ProMan's
   stock sections didn't (hero stat strip, tag-based skills grid).

   No stock photography: ProMan ships a profile.png, about-1/2.jpg,
   team-*.jpg and testimonial-*.jpg that are all stock photos of other,
   unrelated people -- passing any of those off as Mulenga Katebe (or as a
   team/testimonial that doesn't exist) would misrepresent them the same way
   a fabricated client name would. None of those assets are used anywhere in
   this build; every visual here is typography, color, and Font Awesome
   icons. See docs/proman-original-index.html for what the template shipped.
   ========================================================================== */

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

/* --- Display type ---------------------------------------------------------
   ProMan headings otherwise inherit the body font (Source Sans 3). Fraunces
   is reserved for the roles the CV artifact used it for: the name, section
   titles, and large display numbers. */
h1, h2, h3,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.navbar-brand h1 {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
}
.display-3, .display-1 { font-weight: 900; }
h1, h2, .display-5 { font-weight: 700; }
h3 { font-weight: 600; }

/* --- Hero -----------------------------------------------------------------
   ProMan's hero right column held a profile photo; this site has no real
   photo of Mulenga Katebe to show, so that column instead carries the same
   four-stat strip the CV artifact opens with. */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10, 20, 18, .06), 0 10px 28px rgba(10, 20, 18, .07);
}
.hero-stats .stat {
  background: #fff;
  padding: 1.6rem 1.4rem;
}
.hero-stats .stat .num {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary);
}
.hero-stats .stat .lab {
  font-size: .82rem;
  color: #566169;
  margin-top: .5rem;
}
@media (max-width: 575.98px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

.hero-eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .85rem;
}
.hero-contact-row a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  padding-bottom: 2px;
}
.hero-contact-row a:hover { color: var(--primary); border-color: var(--primary); }

/* --- Capability cards (repurposed "Service" section) -----------------------
   ProMan's service-item was icon + heading + one-line description + price.
   The capability cards carry a bullet list too, and never a price -- no
   rate is quoted/approved for this content. */
.service-item ul {
  margin: .75rem 0 0;
  padding-left: 1.1rem;
  font-size: .93rem;
  color: #495057;
}
.service-item ul li { margin-bottom: .4rem; }
.service-item ul li:last-child { margin-bottom: 0; }
.cap-tag {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .3em .7em;
  border-radius: 5px;
  margin-bottom: .8rem;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}
.service-item.warm .cap-tag {
  background: color-mix(in srgb, var(--secondary) 20%, transparent);
  color: color-mix(in srgb, var(--secondary) 65%, black);
}

/* --- Technical skills grid (repurposed "Skill" section) --------------------
   ProMan's original #skill held percentage progress bars and an
   Experience/Education tab pair naming placeholder companies and schools --
   removed (see index.njk comment) in favour of a plain tag grid, matching
   the CV artifact's skills-grid pattern. No percentage claims: there is no
   approved self-assessment to put a number on. */
.skills-grid .skill-group h4 {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #566169;
  font-weight: 600;
  margin-bottom: .7rem;
}
.tag-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.tag {
  font-size: .8rem;
  padding: .32em .7em;
  border-radius: 5px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}

/* --- Contact --------------------------------------------------------------
   No formEndpoint configured yet (see site.json) -- the contact section
   shows this CTA card instead of a non-functional <form>. */
.contact-cta {
  background: var(--light);
  border-radius: 12px;
  padding: 2.25rem;
  height: 100%;
}
