/* Reset minimal & moderne Basis */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Modernes, ruhiges Hintergrunddesign angelehnt an Logo-Farben */
body {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #f5f5f5 0%, #e6e6e6 100%);
    font-family: "Bitstream Vera Sans", "Lucida Sans Unicode",
                 "Lucida Grande", Arial, sans-serif;
}

/* Zentrierte Karte */
.maintenance-wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.maintenance-card {
    max-width: 600px;
    margin: 0 auto;

    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    padding: 40px 30px;
    text-align: center;

    border-top: 4px solid #000099; /* Bezug auf Linkfarbe aus Legacy-CSS */
}

/* Logo */
.logo-container img {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
}

/* Typografie */
.maintenance-text h1 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000000;
}

.maintenance-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

/* Kleine dezente Animation */
.maintenance-card {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .maintenance-card {
        padding: 30px 20px;
    }

    .maintenance-text h1 {
        font-size: 18px;
    }

    .maintenance-text p {
        font-size: 14px;
    }
}
