/* ===== NFC Mahler – Coming Soon & Rechtsseiten ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #16222a 0%, #3a6073 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #2c3e50;
}

/* --- Coming-Soon-Karte --- */
.coming-soon-container {
    background: #fff;
    width: 100%;
    max-width: 640px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    padding: 48px 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.logo-container { margin-bottom: 24px; }
.logo-container img { max-width: 220px; height: auto; }

.coming-soon-text h1 { font-size: 1.7rem; color: #1e3a5f; margin-bottom: 20px; line-height: 1.3; }
.lead { margin-bottom: 12px; line-height: 1.6; color: #555; }
.contact-info { margin: 18px 0; font-size: 1.1rem; }
.coming-soon-text a { color: #004F7C; text-decoration: none; font-weight: 600; }
.coming-soon-text a:hover { text-decoration: underline; }

/* --- Fortschrittsbalken --- */
.progress-container { background: #e8eef3; border-radius: 50px; height: 10px; margin: 24px 0; overflow: hidden; }
.progress-bar {
    background: linear-gradient(90deg, #004F7C, #0A6EBD);
    height: 100%; width: 65%; border-radius: 50px;
    animation: progress 2.5s ease-out forwards;
}
@keyframes progress { from { width: 0; } to { width: 65%; } }

/* --- Kontaktformular --- */
.contact-form { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; text-align: left; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #dde5ec;
    border-radius: 10px; font-size: 1rem; font-family: inherit; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #004F7C; }
.contact-form button {
    background: linear-gradient(90deg, #004F7C, #0A6EBD); color: #fff; border: none;
    padding: 14px; border-radius: 10px; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 79, 124, 0.4); }
.hp-field { display: none; } /* Honeypot gegen Spam-Bots */
.success { color: #27ae60; font-weight: 600; margin-bottom: 12px; }
.error   { color: #c0392b; font-weight 600; margin-bottom: 12px; }

/* --- DSGVO-Checkbox (Pflichtfeld) --- */
.dsgvo-label {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.85rem; line-height: 1.5; color: #666; cursor: pointer;
}
.dsgvo-label input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: #004F7C; cursor: pointer;
}
.dsgvo-label a { color: #004F7C; font-weight: 600; }

/* --- Footer --- */
.footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid #eee; font-size: 0.95rem; }
.footer a { color: #004F7C; text-decoration: none; font-weight: 600; }
.footer a:hover { text-decoration: underline; }

/* --- Rechtsseiten (Impressum / Datenschutz) --- */
.legal-container {
    background: #fff; width: 100%; max-width: 820px; border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45); padding: 48px 40px; animation: fadeIn 0.8s ease;
}
.legal-container h1 { color: #1e3a5f; margin-bottom: 24px; }
.legal-container h2 { color: #1e3a5f; margin: 26px 0 10px; font-size: 1.15rem; }
.legal-container h3 { color: #34495e; margin: 18px 0 8px; font-size: 1rem; }
.legal-container p  { margin-bottom: 10px; line-height: 1.7; color: #444; }
.legal-container ul { margin: 0 0 12px 20px; line-height: 1.7; color: #444; }
.legal-container a  { color: #004F7C; }
.back-link { display: inline-block; margin-top: 28px; color: #004F7C; font-weight: 600; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .coming-soon-container, .legal-container { padding: 32px 20px; }
    .coming-soon-text h1 { font-size: 1.35rem; }
}