/* impressum.css */

/* ---------------- BASIS ---------------- */
body {
    margin: 0;
    font-family: 'Cabin', sans-serif;
    background: #fff;
    color: #3B3B3B;
    text-align: center; /* alles zentrieren */
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* ---------------- HEADER ---------------- */
.site-header {
    margin-bottom: 2rem;
}

.site-header h1 {
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
}

/* ---------------- IMPRESSUM TEXT ---------------- */
.impressum-text {
    font-family: 'Cabin', sans-serif; /* alles Cabin */
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center; /* zentrieren */
}

.impressum-text p {
    margin: 0.8rem 0;
}

.impressum-text a {
    color: #3B3B3B;
    text-decoration: none;
    font-weight: 600;
}

.impressum-text a:hover {
    text-decoration: underline;
}

/* ---------------- BUTTON ZURÜCK ---------------- */
.back-button {
    display: inline-block;
    background: transparent;
    color: #3B3B3B;
    font-family: 'Cabin', sans-serif;
    font-weight: 550;
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-decoration: none;
    padding: 0.4em 1em;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.back-button:hover {
    background: #3B3B3B;
    color: #fff;
    text-decoration: none;
}
