@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Inter+Tight:wght@900&display=swap');

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

/* globale, möglichst unsichtbare Scrollbars für alle scrollbaren Elemente */
* {
    scrollbar-width: none;
    /* Firefox: keine sichtbare Leiste */
}

/* WebKit-Browser (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html {
    height: 100%;
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    /* größere, weiterhin responsive Grundschriftgröße */
    font-size: clamp(18px, 1.2vw + 10px, 24px);
}

/* WICHTIG: html + body mindestens volle Höhe */
html,
body {
    min-height: 100%;
}

body {
    font-family: inherit;
    color: #111;
    background-attachment: fixed;

    overflow-x: hidden;
}

/* während der Startanimation optional Scroll sperren */
body.startup-loading {
    overflow: hidden;
}

:root {
    --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji";

    --color-primary: #111;
    --color-background: #fff;

    /* Verlauf kann hier zentral angepasst werden */
    --color-gradient-start: #000000;
    --color-gradient-end: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
textarea {
    font-family: inherit;
}