/* ========================================
   Reset
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--hegau-font-family);
    font-size: var(--hegau-font-size-md);
    line-height: var(--hegau-line-height);

    color: var(--hegau-color-text);
    background: var(--hegau-color-background);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ========================================
   Typography
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--hegau-space-5);
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin: 0 0 var(--hegau-space-5);
}

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

    transition:
        color var(--hegau-transition),
        opacity var(--hegau-transition);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ========================================
   Forms
======================================== */

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}