/* SectorLabs Forgejo branding. Loaded via templates/custom/header.tmpl. */

:root {
  /* Brand accent (drives buttons, links, active states). */
  --color-primary: rgb(116, 189, 197);
  --color-primary-dark-1: rgb(116, 189, 197);
  --color-primary-light-1: rgb(116, 189, 197);

  /* UI font: self-hosted Source Sans Pro (see @font-face below). */
  --fonts-proportional: "Source Sans Pro", system-ui, sans-serif;
  --fonts-monospace: ui-monospace, "SFMono-Regular", "Menlo", monospace;
}

/* Source Sans Pro (shipped as Source Sans 3, its renamed maintained release),
   self-hosted so the private instance needs no external font CDN. */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-pro-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/source-sans-pro-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-pro-700.woff2") format("woff2");
}

/* Landing page (templates/home.tmpl): centered logo + slogan, nothing else. */
.page-content.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}
.page-content.home .logo {
  width: 220px;
  height: 220px;
}
.page-content.home .hero h1,
.page-content.home .hero h2,
.page-content.home .hero h3 {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Marker so we can confirm this stylesheet is served + injected. */
/* sectorlabs-branding-loaded */
