/*
  THEME FILE — this is the only file you should need to touch to reskin
  this template for a new client. Everything else (style.css) reads
  from these variables.

  This palette keeps the calm, minimal layout of the "Apple / Tesla
  cabin" direction but swaps out Apple's own near-black/white/blue for
  charcoal + plum, so it reads as its own identity rather than a copy.
  One restrained accent used sparingly (links, focus states, the odd
  highlight) rather than splashed everywhere.

  How to reuse this template for a new client:
  1. Pick a primary + accent color that match the client's brand.
  2. Swap the font name if the client wants something other than Inter
     (self-hosted below — swap the @font-face files and family name).
  3. Replace /assets/logo-placeholder.svg with the client's logo.
  4. Update copy in the HTML files and content in js/main.js if needed.
*/

/* Self-hosted instead of linked from Google Fonts' CDN, so no visitor
   IP addresses get shared with Google just from loading the page. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/inter-800.woff2') format('woff2');
}

:root {
  /* Brand colors — change these per client */
  --color-primary: #1c1c1c;      /* headings, dark surfaces, primary buttons */
  --color-primary-light: #2e2b2d;
  --color-accent: #5b3758;       /* used sparingly: links, focus, small highlights */
  --color-accent-dark: #432a41;

  /* Neutrals */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f7;
  --color-text: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-border: #d2d2d7;
  --color-white: #ffffff;

  /* Typography — Inter stands in for SF Pro; tight tracking on big type
     is what gives it the Apple feel. */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --max-width: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}
