/* Pfad: css/layout.css */
/*
 * Globales Reset und Layout-Struktur
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

body {
    background-color: var(--c-carbon);
    color: var(--c-mist);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typografie-System */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    line-height: 1.2;
}

p {
    color: var(--c-mist);
    letter-spacing: 0.01em;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Spacer Utility */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }