/* font.css - Inter Font Setup with Custom Text Classes */

/* Import Google Fonts Inter (all weights) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Base font family */
body,
html {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--light-txt);
}

/* Font weight classes */
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

/* Font style classes */
.fs-normal {
  font-style: normal;
}
.fs-italic {
  font-style: italic;
}

/* Text transform classes */
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}

/* Letter spacing */
.ls-0 {
  letter-spacing: 0;
}
.ls-1 {
  letter-spacing: 0.05em;
}
.ls-2 {
  letter-spacing: 0.1em;
}
.ls-3 {
  letter-spacing: 0.15em;
}

/* Line height utility classes */
.lh-1 {
  line-height: 1;
}
.lh-15 {
  line-height: 1.5;
}
.lh-2 {
  line-height: 2;
}

/* Responsive font sizes */
.text-xs {
  font-size: 12px;
}
.text-sm {
  font-size: 14px;
}
.text-md {
  font-size: 16px;
}
.text-lg {
  font-size: 18px;
}
.text-xl {
  font-size: 20px;
}
.text-2xl {
  font-size: 24px;
}
.text-3xl {
  font-size: 30px;
}
.text-4xl {
  font-size: 36px;
}
.text-5xl {
  font-size: 48px;
}

/* Heading defaults */
h1,
.h1 {
  font-size: 3rem;
  font-weight: 700;
}
h2,
.h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
h3,
.h3 {
  font-size: 2rem;
  font-weight: 500;
}
h4,
.h4 {
  font-size: 1.75rem;
  font-weight: 500;
}
h5,
.h5 {
  font-size: 1.5rem;
  font-weight: 400;
}
h6,
.h6 {
  font-size: 1.25rem;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  line-height: normal;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}


