/*
Theme Name:   Dein Theme
Theme URI:    https://example.com
Description:  Minimales WordPress-Theme als Basis für das Projekte-Slider-Template.
Version:      1.0.0
Author:       Dein Name
Author URI:   https://example.com
Text Domain:  dein-theme
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #6c63ff;
    text-decoration: none;
}
a:hover { text-decoration: underline; }

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