/* assets/css/global.css */

/* Reset margins and padding for a clean slate */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--slate-grey);
    background-color: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}