/* ===========================
   Necessary Imports & Resets
=========================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   Root Variables
=========================== */
:root {
  --color-bg: #000814;
  --color-bg-lighter: #001d3d;
  --color-bg-lightest: #003566;
  --color-highlight: #ffd60a;
  --color-text: #ffc300;
  --color-text-muted: #ffc40078;

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ===========================
   Base Typography & Layout
=========================== */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-lighter);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1px;
}
