/* Filename: space-grotesk.css */

/* Import Space Grotesk from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

/* Base font for all elements */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

/* Headings with weights */
h1 {
    font-weight: 700 !important;
    font-size: 2.5rem;
}

h2 {
    font-weight: 400 !important;
    font-size: 2rem;
}

h3 {
    font-weight: 500 !important;
    font-size: 1.75rem;
}

h4 {
    font-weight: 500 !important;
    font-size: 1.5rem;
}

h5 {
    font-weight: 400 !important;
    font-size: 1.25rem;
}

h6 {
    font-weight: 400 !important;
    font-size: 1rem;
}

/* Paragraphs */
p {
    font-weight: 400 !important;
    font-size: 1rem;
}

/* Links */
a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    text-decoration: none;
    color: inherit;
}

/* Buttons and inputs */
button, input, select, textarea {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
}

/* Lists */
ul, ol {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 400 !important;
}

/* Force pseudo-elements to inherit the font */
*::before,
*::after {
    font-family: 'Space Grotesk', sans-serif !important;
}
/* ✅ Make bold actually bold again */
strong, b {
    font-weight: 700 !important;
}