/*
==================================================
Dream Kingdom
Design System v1.0
Base Styles
==================================================

Contains:
- CSS Reset
- HTML Elements
- Typography
- Forms
- Links
- Images
- Tables

Do NOT place reusable components here.
Those belong in dk-components.css.

==================================================
*/


/*=================================================
= RESET
=================================================*/

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


/*=================================================
= HTML
=================================================*/

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

body{

    min-height:100vh;

    font-family:var(--dk-font-family);

    font-size:var(--dk-font-size-md);

    color:var(--dk-text);

    background:var(--dk-bg);

    line-height:1.6;

    text-rendering:optimizeLegibility;

}


/*=================================================
= HEADINGS
=================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0;

    font-weight:var(--dk-font-heavy);

    color:inherit;

}

h1{

    font-size:var(--dk-font-size-hero);

}

h2{

    font-size:var(--dk-font-size-xl);

}

h3{

    font-size:var(--dk-font-size-lg);

}

h4{

    font-size:var(--dk-font-size-md);

}

h5{

    font-size:var(--dk-font-size-sm);

}

h6{

    font-size:var(--dk-font-size-xs);

}


/*=================================================
= PARAGRAPHS
=================================================*/

p{

    margin:0;

}


/*=================================================
= LINKS
=================================================*/

a{

    color:var(--dk-primary);

    text-decoration:none;

    transition:var(--dk-transition-fast);

}

a:hover{

    text-decoration:underline;

}


/*=================================================
= LISTS
=================================================*/

ul,
ol{

    margin:0;

    padding-left:22px;

}

li{

    margin-bottom:6px;

}


/*=================================================
= IMAGES
=================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}


/*=================================================
= BUTTON
=================================================*/

button{

    font-family:inherit;

}


/*=================================================
= FORM
=================================================*/

input,
textarea,
select{

    font-family:inherit;

    font-size:inherit;

}


/*=================================================
= TABLE
=================================================*/

table{

    width:100%;

    border-collapse:collapse;

}

th,
td{

    padding:12px;

    text-align:left;

}


/*=================================================
= HR
=================================================*/

hr{

    border:none;

    border-top:1px solid rgba(0,0,0,.08);

}


/*=================================================
= CODE
=================================================*/

code,
pre{

    font-family:Consolas,
    monospace;

}


/*=================================================
= SELECTION
=================================================*/

::selection{

    background:var(--dk-primary);

    color:#fff;

}


/*=================================================
= SCROLLBAR
=================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--dk-primary);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--dk-primary-dark);

}