/* =========================
   Global Theme
   Fonts & Creative Settings
   ========================= */

/* Font stacks */
:root{
  --font-body: "Inter", system-ui, sans-serif;
  --font-heading: "Space Grotesk", system-ui, sans-serif;

  --tracking-tight: .02em;
  --tracking-wide: .08em;

  --line-body: 1.55;
}

/* Base typography */
body{
  font-family: var(--font-body);
  line-height: var(--line-body);
}

/* Headings and brand */
.h1,
.posterTitle,
.brand{
  font-family: var(--font-heading);
  letter-spacing: var(--tracking-tight);
}

/* Hero titles */
.posterTitle{
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Nav links */
.navlinks a{
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Cards and UI text */
.card h3{
  font-family: var(--font-heading);
  letter-spacing: .04em;
}

.footerLinks{
  display:flex;
  gap:14px;
  justify-content:center;
  margin-bottom:6px;
}
.footerLinks a{
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
}
.footerLinks a:hover{
  color:var(--text);
}
