/* ============================================================
   HARDTWALDBATTERIE – Base Styles
   Reset + typography + base element styles
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* === Body === */
body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--bg-void);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === Links === */
a {
    color: inherit;
    text-decoration: none;
}

/* === Inline elements === */
strong {
    font-weight: 700;
}

em {
    font-style: italic;
}
