/*
 * base.css
 * Enthält: Fonts, Reset, globale Defaults, Basis-Elemente.
 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/playfair-display.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/source-serif-4.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff8eb;
    font-family: 'Source Serif 4', serif;
    color: #333;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: #799e86;
    font-weight: bold;
}
