/* Reset css file for eetclub.eu in engels project */

/* Box-sizing en margin/padding reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Verwijder standaard lijststijlen */
ul, ol {
    list-style: none;
}

/* Verwijder standaard linkstijl */
a {
    text-decoration: none;
    color: inherit;
}

/* Zorg voor consistente typografie */
body {
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Dark mode ondersteuning */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
}

/* Verwijder standaard button/input styles */
button, input, select, textarea {
    font: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Zorg dat afbeeldingen zich goed schalen */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* HTML5 elementen als block */
article, aside, footer, header, nav, section {
    display: block;
}

/* Verbeter toegankelijkheid */
[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}