/* ======== SCHEER - Base Styles ======== */

/* ======== Disable transitions until loaded ======== */
html:not(.transitions-ready) * {
    transition: none !important;
}

/* ======== CSS Reset ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* ======== Document ======== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* ======== Sections ======== */
section {
    margin: 0;
    padding: 0;
}

/* ======== Typography Base ======== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ======== Images ======== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======== Lists ======== */
ul, ol {
    list-style: none;
}

/* ======== Buttons ======== */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ======== Form Elements ======== */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ======== Selection ======== */
::selection {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

