/* ============================================
   KMSoft Arculat – Alap CSS (base.css)
   WinWatt Next – 1:1 másolat km-app-ból
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Selection */
::selection {
    background: var(--color-primary, #7BBA40);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg, #f8faf6); }
::-webkit-scrollbar-thumb { background: var(--color-primary, #7BBA40); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent, #8BC53F); }
