/**
 * Projekt:      CRM Markisenkeydel
 * Datei:        reset.css
 * Beschreibung: Minimaler CSS-Reset
 * Entwickler:   Jörg Hennig - hnng.it
 * Version:      1.0.0
 * Lizenz:       Proprietär – © 2026 MK Markisenkeydel
 */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--schrift-sans);
    font-size: var(--schrift-basis);
    line-height: var(--zeilenhoehe);
    color: var(--farbe-text);
    background-color: var(--farbe-hintergrund);
    min-height: 100vh;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4 {
    line-height: var(--zeilenhoehe-eng);
    font-weight: 600;
}

fieldset {
    border: none;
}

legend {
    font-weight: 600;
}

/* Fokus-Styles für Tastaturnavigation */
:focus-visible {
    outline: 2px solid var(--farbe-akzent);
    outline-offset: 2px;
}
