:root {
    --primary: #7000F4;
    --white: #FFFFFD;
    --black: #010101;
    --gradient: linear-gradient(to bottom right, #7000f4 0%, #2184f9 100%);
    --white-secondary: #f5f5f5;

    --radius: 8px;

    --font-header: 'GeneralSans-Medium', sans-serif;
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-tagline: 'Inter', sans-serif;

    --weight-400: 400;
    --weight-600: 600;
    --weight-700: 700;

    --weight-header-bold: var(--weight-600);
    --weight-header-regular: var(--weight-400);

    --weight-body-regular: var(--weight-400);

    --weight-tagline-bold: var(--weight-700);


    --font-satohi-light: 'Satoshi-Light', sans-serif;
    --font-satoshi-medium: 'Satoshi-Medium', sans-serif;

    --font-general-sans-light: 'GeneralSans-Light', sans-serif;
    --font-general-sans-regular: 'GeneralSans-Regular', sans-serif;
    --font-general-sans-medium: 'GeneralSans-Medium', sans-serif;
    /* 
    --weight-general-sans-light: 300;
    --weight-general-sans-regular: 400;
    --weight-general-sans-medium: 500;

    --weight-satoshi-bold: 700;
    --weight-satoshi-medium: 500; */

}


/* poppins-700 - latin */


@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff'),
        url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff'),
        url('../fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'GeneralSans-Light';
    src: url('../fonts/GeneralSans-Light.woff2') format('woff2'),
        url('../fonts/GeneralSans-Light.woff') format('woff'),
        url('../fonts/GeneralSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans-Regular';
    src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'),
        url('../fonts/GeneralSans-Regular.woff') format('woff'),
        url('../fonts/GeneralSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans-Medium';
    src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'),
        url('../fonts/GeneralSans-Medium.woff') format('woff'),
        url('../fonts/GeneralSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.content-padding {
    padding: 0rem 9rem;
}

@media (max-width: 1400px) {
    .content-padding {
        padding: 0rem 3rem;
    }
}

@media (max-width: 768px) {
    .content-padding {
        padding: 0rem 2rem;
    }
}

@media (max-width: 480px) {
    .content-padding {
        padding: 0rem 1rem;
    }
}

/* --- Tekst wylacznie dla czytnikow ekranu ---
   Dodane 2026-08-04. Uzywane m.in. do dopowiedzenia celu linkow "Czytaj więcej". */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --- Rozmiary czcionek w rem (dodane 2026-08-04) ---
   Wszystkie deklaracje font-size byly w px, przez co witryna ignorowala
   ustawienie domyslnego rozmiaru czcionki w przegladarce. 1rem = 16px,
   wiec przy ustawieniach domyslnych wyglad jest identyczny jak wczesniej.
   NIE ustawiac font-size na html/:root - zmieni to skale calej witryny. */
