/* seanxthielen.com — static rebuild (off Webflow)
   Design tokens transcribed from the original Webflow CSS.
   Font: the original "Venus W01 Halbfett" (Sean's licensed font), self-hosted as woff2 —
   the exact file the Webflow site served. The file is the Halbfett (semibold) cut, so it's
   used at font-weight 400 just like the original. Arial is the load/fallback face.
   Model: all inline links are magenta (--link); each page's --accent colors the header
   sentence + emphasized words; the "Home" link is magenta. */

@font-face {
  font-family: "Venus W01 Halbfett";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/venus-halbfett.woff2") format("woff2");
}

:root {
  --bg:     #141720;             /* page background */
  --text:   #cacaca;            /* body / labels */
  --white:  #fff;
  --link:   #eb00ff;            /* every inline link + Home link, site-wide */
  --accent: #fff;               /* per-page: header sentence + emphasized words */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Venus W01 Halbfett", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 0;
}

/* per-page accent (header + emphasized spans) */
body.home     { --accent: #fff;     }
body.menagerie{ --accent: #00ffd1;  }
body.palace   { --accent: #e3ff00;  }
body.silica   { --accent: #a58cff;  }

/* centered column; full-width with responsive side padding (matches original) */
.page {
  width: 100%;
  margin: 0 auto;
  padding: 0 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* header sentence */
.intro { padding-bottom: 8px; }
.intro h1 {
  color: var(--accent);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

/* label / value grid */
.grid {
  display: grid;
  grid-template-columns: .25fr 1fr;
  column-gap: 10px;
  row-gap: 6px;
}
.grid .label { font-style: italic; color: var(--text); }
.grid .value { color: var(--text); }

/* emphasis inside values */
.value .accent { color: var(--accent); }
.value .white  { color: var(--white); }
.divider       { color: var(--white); }

/* links: magenta everywhere, no underline; project-name links are italic */
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link); }
.label a { font-style: italic; }

/* "Home" link block on subpages */
.grants { display: flex; }
.home-link { color: var(--link); }

/* responsive side padding — transcribed from the original breakpoints */
@media (max-width: 991px) { .page { padding: 0 150px; } }
@media (max-width: 767px) { .page { padding: 0 60px;  } }
@media (max-width: 479px) {
  .page { padding: 0 20px; }
  body  { align-items: flex-start; }   /* original top-aligns at this breakpoint */
}
