/*
Theme Name: DM2030 Maintenance
Theme URI: https://deutschland-mobil-2030.de
Author: DM2030
Author URI: https://deutschland-mobil-2030.de
Description: Einfaches Wartungs-Theme für Deutschland Mobil 2030
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dm2030-maintenance
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #001f3f; /* Navy Blue */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.maintenance-content {
    max-width: 600px;
}

.maintenance-content h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.maintenance-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.maintenance-content .contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.maintenance-content .contact a {
    color: #7fdbff;
    text-decoration: none;
}

.maintenance-content .contact a:hover {
    text-decoration: underline;
}

.site-footer {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .maintenance-content h1 {
        font-size: 2.5rem;
    }
    
    .maintenance-content p {
        font-size: 1.25rem;
    }
}
