/* start_here.txt — the welcome window, open by default, closable like any other window */
/* Jersey 10 Charted (Google Fonts, OFL) — self-hosted, subset to Latin.
   License: fonts/fonts/licenses/jersey10charted-OFL.txt */
@font-face {
  font-family: "Jersey 10 Charted";
  src: url("fonts/jersey-10-charted.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.desktop-window--welcome {
  position: fixed;
  top: calc(50vh - 96px);
  left: calc(50vw - 250px);
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: 500px;
  height: 192px;
  --cal-flat-titlebar-bg: #fbe9ef;
  --cal-flat-close: #e0709a;
  --cal-flat-min: #f0c4d6;
  --cal-flat-zoom: #c54071;
}
.desktop-window--welcome .cal-body.welcome-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  font-family: Karrik, Arial, sans-serif;
  color: #26303b;
  overflow: auto;
}
.welcome-name {
  font-family: "Jersey 10 Charted", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  text-align: center;
}
.welcome-intro {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
  margin: 0 0 20px;
  color: #53606c;
  text-align: center;
}
.welcome-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.welcome-actions a {
  color: #26303b;
  font-size: 14px;
  text-underline-offset: 3px;
}
.welcome-actions__primary {
  background: #c54071;
  color: #fff !important;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 4px;
}
.welcome-actions a:focus-visible {
  outline: 3px solid #26303b;
  outline-offset: 3px;
}
@media (max-width: 899px) {
  .desktop-window--welcome { display: none; }
}

/* mobile quick-links row, under the mobile home tagline */
.mobile-start-routes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0;
  font-family: Karrik, Arial, sans-serif;
}
.mobile-start-routes a {
  color: #26303b;
  text-underline-offset: 4px;
  font-size: 16px;
}
.mobile-start-routes a.home-routes__primary {
  background: #c54071;
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
}
.mobile-start-routes a:focus-visible {
  outline: 3px solid #26303b;
  outline-offset: 4px;
}
