@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

* { box-sizing: border-box; }

body {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    background: #1a0f18;
    color: #e8e0e5;
}

/* Reiner Inhaltsbereich (Seiten ohne .fcg_seite-wrapper, z.B. Artikel-Detail, Formulare) */
main {
    max-width: 1428px;
    margin: 0 auto;
    padding: 1rem;
}

a {
    color: #b090b0;
}

.hinweis {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #5c3a52;
    color: #e8e0e5;
    padding: 0.8rem;
    border-radius: 10px;
}

.fehler {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid #a05050;
    color: #e8e0e5;
    padding: 0.8rem;
    border-radius: 10px;
}

.kommentar {
    border-bottom: 1px solid #5c3a52;
    padding: 0.6rem 0;
}

.kommentar .datum {
    color: #cbb8c6;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

form label {
    display: block;
    margin-bottom: 0.8rem;
    color: #e8e0e5;
}

form input[type="text"],
form input[type="email"],
form input[type="file"],
form textarea,
form select {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.3rem;
    background: transparent;
    border: 1px solid #5c3a52;
    border-radius: 10px;
    color: #e8e0e5;
    font-family: inherit;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #b090b0;
}

form select option {
    background: #1a0f18;
    color: #e8e0e5;
}

button,
form button[type="submit"] {
    background: #5c3a52;
    color: #e8e0e5;
    border: 1px solid #5c3a52;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

button:hover {
    background: #71465f;
}
