/*
Theme Name: Scalajan Theme
Theme URI: https://scalajan.com
Description: A bold, custom-built WordPress theme for Scalajan featuring a striking dark design with lime and orange accents, animated marquees, an interactive world map, dynamic playbook listings, and fully styled article pages.
Version: 1.1.0
Author: Krishank Shah (KMATS)
Author URI: https://kmats.in/
Text Domain: scalajan
Requires at least: 6.0
Requires PHP: 7.4
*/

/* --- DESIGN SYSTEM DESIGN SYSTEM TOKENS --- */
:root {
  /* Colors */
  --ink: #001621;
  --ink-light: #06202b;
  --ink-lighter: #01293a;
  --lime: #ccff02;
  --orange: #ff4103;
  --off-white: #fafafa;
  --white: #ffffff;
  --muted: #7d888e;
  --border-color: rgba(250, 250, 250, 0.12);
  
  /* Fonts */
  --font-display: 'Golek Duit', 'Anton', 'Impact', sans-serif;
  --font-body: 'MADE Okine Sans', 'Poppins', 'Outfit', 'Inter', sans-serif;
  
  /* Grid & Dimensions */
  --container: 1320px;
}

/* --- BASIC RESET & ARCHITECTURE --- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--ink);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--off-white);
  margin-top: 0;
  line-height: 1.1;
}

p, ul, ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

a {
  color: var(--lime);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--orange); /* #ff4103 */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  width: 100%;
}
