/* =========================
   Base Styles
   ========================= */

html {
  font-size: 100%;
}

body {
  font-family: var(--font-base);
  /* font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6; */
}

/* 🅰️ Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-weight: 600;
  line-height: 1.25;
  color: var(--color-text); */
}

/* h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  color: var(--color-text);
} */

/* 🔗 Links */
/* a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
} */

/* 📄 Text helpers */
/* small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
} */

/* 📦 Media */
img {
  max-width: 100%;
  height: auto;
}

/* 🧾 Forms */
/* input,
textarea,
select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  background-color: var(--color-bg);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
} */

/* input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
} */

/* 🔘 Buttons (base only) */
/* button {
  cursor: pointer;
  font-family: inherit;
} */

/* 🧭 Horizontal rule */
/* hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-6) 0;
} */
