/* ==========================================
   1. NAČÍTANIE FONTOV (Neue Haas Grotesk)
   ========================================== */

/* 100 - XXThin / Thin */
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-XXThin.woff2') format('woff2'); font-weight: 100; font-style: normal; }
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-XXThinItalic.woff2') format('woff2'); font-weight: 100; font-style: italic; }

/* 300 - Light */
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-LightItalic.woff2') format('woff2'); font-weight: 300; font-style: italic; }

/* 400 - Regular / Roman */
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-Roman.woff2') format('woff2'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-RomanItalic.woff2') format('woff2'); font-weight: 400; font-style: italic; }

/* 500 - Medium */
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; }

/* 700 - Bold */
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; }

/* 900 - Black */
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'neue-haas-grotesk'; src: url('../../fonts/NeueHaasDisplay-BlackItalic.woff2') format('woff2'); font-weight: 900; font-style: italic; }


/* ==========================================
   2. PREPÍSANIE SYSTÉMOVÝCH PREMENNÝCH
   ========================================== */
:root {
    /* Hlavný font pre text a nadpisy (Nahradí Bootstrap predvolené fonty) */
    --cassiopeia-font-family-body: 'neue-haas-grotesk', Helvetica, Arial, sans-serif;
    --cassiopeia-font-family-headings: 'neue-haas-grotesk', Helvetica, Arial, sans-serif;
    
    /* Vynútenie tvojej váhy a veľkosti pre jadro šablóny */
    --cassiopeia-font-size-body: 19px;
    --cassiopeia-font-weight-normal: 300;
}

/* Ostatné custom pravidlá na telo dokumentu */
body {
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    scrollbar-width: none;
    transition: all 2s ease;
    cursor: default;
}