/* TOIKARA.DE - GOLDEN MASTER VARIABLES */

/* 1. TYPOGRAPHY & FONTS */

/* Inter (Primary Sans) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/inter-v20-latin-500.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/inter-v20-latin-600.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
  font-display: swap;
}

/* JetBrains Mono (Monospace) */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* IBM Plex Sans (Alternative Sans) */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/ibm-plex-sans-v23-latin-regular.woff2') format('woff2');
  font-display: swap;
}


:root {
  /* 2. COLOR TOKENS */
  --bg-color: #1A1A1A;          /* Matte Charcoal */
  --card-bg: #202020;            /* Overlay/Card */
  --border-color: #2F2F2F;      /* Border */
  --text-primary: #F2F2F2;      /* Text Primary */
  --text-muted: #8C8C8C;        /* Text Muted */
  --accent-color: #2DD4BF;      /* Teal */
  --status-color: #F59E0B;      /* Amber */
  --bg-noise: url('/assets/img/bg_noise.png'); /* Texture */

  /* 3. FONTS GLOBAL */
  --font-sans: 'Inter', 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* 4. GEOMETRY */
  --max-width: 1200px;
  --border-radius: 12px; /* 10-14px range */
  --nav-height: 80px;
}
