/* Reset CSS */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font declarations */
@font-face {
    font-family: "Inconsolata";
    src: url("../fonts/Inconsolata/Inconsolata-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-primary: "Inconsolata", monospace;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

/* Base reset */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove default text decoration */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Form elements reset */
button,
input,
select,
textarea {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
}

button {
    cursor: pointer;
}

/* Remove outline on focused elements */
:focus {
    outline: 0;
}

/* HTML5 display definitions */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
    display: block;
}

/* Typography reset */
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Form elements reset */
input,
select,
textarea {
    font-family: var(--font-primary);
}

/* Typography utilities */
.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-bold {
    font-weight: var(--font-weight-bold);
} 