/* ============================================================
   Starcards brand overrides — loaded after style.css
   Remaps style.css custom properties to the SC brand system.
   Light mode only for this initial version.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* Remap style.css tokens to Starcards brand (light mode) */
  --primary:        #A8801F;  /* gold-l — 4.6:1 on paper, passes AA */
  --primary-hover:  #8B6818;  /* gold-l-deep */
  --text:           #1A1610;  /* ink */
  --text-secondary: #3F3A2E;  /* slate-l */
  --text-muted:     #6E6757;  /* fog */
  --border:         #CFC8B6;  /* ash */
  --border-light:   #E6E1D2;  /* bone */
  --bg:             #FAF8F2;  /* paper */
  --bg-secondary:   #F1EDE2;  /* linen-l */
  --bg-code:        #F1EDE2;  /* linen-l */
}

/* Typography */
body {
  font-family: 'Outfit', system-ui, sans-serif;
}

.docs-main h1,
.docs-main h2,
.docs-main h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Logo layout in nav */
.docs-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.docs-header .logo img {
  height: 26px;
  width: auto;
}
