/* -------------------------------------------------------------------------
   fonts.css – Theme Typography
   ------------------------------------------------------------------------- */

/* -------------------- Base Fonts -------------------- */
body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;       /* base font size */
    line-height: 1.6;
    color: var(--text-secondary);
}

/* -------------------- Headings -------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 0.5em;
}

/* Specific heading sizes for cards / smartmobile templates */
h1 { font-size: 28px; font-weight: 700; }
h2 { font-size: 20px; font-weight: 600; }
h3 { font-size: 18px; font-weight: 500; }
h4 { font-size: 16px; font-weight: 500; }
h5 { font-size: 14px; font-weight: 500; }
h6 { font-size: 13px; font-weight: 500; }

/* -------------------- Paragraphs & Card Text -------------------- */
p, .spec, .card-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

/* -------------------- Links -------------------- */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--link-hover);
}

/* -------------------- Small / meta text -------------------- */
small, .small-text {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* -------------------- Utility Classes -------------------- */
.font-bold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-regular { font-weight: 400; }
