/* Grundlegende Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    background-color: #ffffff;
    color: #1a1a1a;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    
    /* WASSERZEICHEN-EFFEKT: 
       Das Logo wird als Hintergrund fixiert, zentriert und durch eine 
       weiße CSS-Überlagerung (linear-gradient) extrem dezent verblasst (ca. 8% Sichtbarkeit).
    */
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('logo.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Container für Inhalte */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    z-index: 2;
}

/* Logo-Präsentation */
.logo-wrapper {
    max-width: 450px;
    width: 100%;
    margin-bottom: 30px;
}

.main-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Statustext */
.status-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.status-content p {
    font-size: 1.1rem;
    color: #555555;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Kleiner animierter Ladebalken als optischer Akzent (Nutzt das Orange aus dem Logo) */
.loader-line {
    width: 80px;
    height: 4px;
    background: #d36113; /* Abgestimmter Orange-Ton aus dem Logo */
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

/* Impressum Bereich ganz unten */
.impressum-footer {
    background-color: rgba(245, 245, 245, 0.95);
    border-top: 1px solid #e5e5e5;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #444444;
    z-index: 2;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.impressum-footer h2 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    line-height: 1.7;
}

.impressum-grid p {
    margin-bottom: 5px;
}

/* Responsive Design für kleinere Bildschirme (Tablets & Smartphones) */
@media (max-width: 768px) {
    .status-content h1 {
        font-size: 1.7rem;
    }
    
    .status-content p {
        font-size: 1rem;
    }

    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo-wrapper {
        max-width: 300px;
    }
}