/* ============================================
   Nik Behrendt – Impressum Page
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    padding: 20px 0;
}

.back-link {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
    margin-right: 12px;
}

.back-link:hover {
    color: #ffffff;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* --- Main Content --- */
.impressum-main {
    flex: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #ffffff;
}

.impressum-block {
    margin-bottom: 40px;
}

.impressum-block p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.impressum-block strong {
    font-weight: 600;
    color: #ffffff;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #ffffff;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 30px;
    color: rgba(255,255,255,0.9);
}

/* --- Footer --- */
.site-footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 778px) {
    .impressum-content {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 35px;
    }

    h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .impressum-block p {
        font-size: 14px;
    }

    .impressum-main {
        padding-top: 100px;
    }
}
