/* Deklaracja czcionki Nimbus Sans Font Family */
@font-face {
    font-family: 'Nimbus Sans';
    src: url('../fonts/NimbusSans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nimbus Sans';
    src: url('../fonts/NimbusSans-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nimbus Sans';
    src: url('../fonts/NimbusSans-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nimbus Sans';
    src: url('../fonts/NimbusSans-BoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* Ustawienie czcionki Nimbus Sans jako globalnej oraz czarny kolor tekstu */
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: 'Nimbus Sans', Helvetica, Arial, sans-serif !important;
    color: #000 !important;
}

/* Specjalne style dla nagłówków */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #000 !important;
}

/* Styl dla tekstu pogrubionego */
strong, b {
    font-weight: bold;
    color: #000 !important;
}

/* Styl dla tekstu pochylonego */
em, i {
    font-style: italic;
    color: #000 !important;
}

/* Nadpisanie stylów dla formularzy */
input, button, textarea, select {
    font-family: 'Nimbus Sans', Helvetica, Arial, sans-serif !important;
    color: #000 !important;
}

/* Specjalne style dla odnośników */
a, a:link, a:visited, a:hover, a:active {
    color: #000 !important;
    text-decoration-color: #000 !important;
} 