/* ============================================
   INFINITYS GAMING - FONTS STYLESHEET
   https://infinitysgaming.vip
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Font Stacks */
:root {
  --ig-font-display:  'Orbitron', 'Courier New', monospace;
  --ig-font-heading:  'Rajdhani', 'Arial Narrow', sans-serif;
  --ig-font-body:     'Poppins', 'Segoe UI', sans-serif;
}

/* Utility Classes */
.ig-font-display {
  font-family: var(--ig-font-display);
  letter-spacing: 1px;
}
.ig-font-heading {
  font-family: var(--ig-font-heading);
  letter-spacing: 0.5px;
}
.ig-font-body { font-family: var(--ig-font-body); }

/* Weight helpers */
.ig-fw-light   { font-weight: 300; }
.ig-fw-regular { font-weight: 400; }
.ig-fw-medium  { font-weight: 500; }
.ig-fw-semi    { font-weight: 600; }
.ig-fw-bold    { font-weight: 700; }
.ig-fw-black   { font-weight: 900; }

/* Size helpers */
.ig-text-xs   { font-size: 0.75rem; }
.ig-text-sm   { font-size: 0.875rem; }
.ig-text-base { font-size: 1rem; }
.ig-text-lg   { font-size: 1.125rem; }
.ig-text-xl   { font-size: 1.25rem; }
.ig-text-2xl  { font-size: 1.5rem; }
.ig-text-3xl  { font-size: 2rem; }
.ig-text-4xl  { font-size: 2.5rem; }
.ig-text-5xl  { font-size: 3.5rem; }

/* Letter spacing */
.ig-ls-tight  { letter-spacing: -0.5px; }
.ig-ls-wide   { letter-spacing: 1px; }
.ig-ls-wider  { letter-spacing: 2px; }
.ig-ls-widest { letter-spacing: 3px; }

/* Line heights */
.ig-lh-tight  { line-height: 1.2; }
.ig-lh-snug   { line-height: 1.4; }
.ig-lh-normal { line-height: 1.6; }
.ig-lh-loose  { line-height: 1.8; }

/* Special display styles */
.ig-display-huge {
  font-family: var(--ig-font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.ig-display-large {
  font-family: var(--ig-font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
}
.ig-display-medium {
  font-family: var(--ig-font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.ig-heading-section {
  font-family: var(--ig-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.ig-label-caps {
  font-family: var(--ig-font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ig-body-large { font-family: var(--ig-font-body); font-size: 1.1rem; line-height: 1.8; }
.ig-body-base  { font-family: var(--ig-font-body); font-size: 1rem; line-height: 1.7; }
.ig-body-small { font-family: var(--ig-font-body); font-size: 0.875rem; line-height: 1.65; }
