/* Style Dach Online Anfrage - Zentrale CSS */
:root {
    --sd-blue: #005088; /* Das Blau aus dem Logo */
    --sd-gray: #4b5563; /* Das Grau aus dem Logo */
    --sd-light: #f3f4f6;
    --sd-white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--sd-light);
    color: var(--sd-gray);
}

/* Header */
.main-header {
    background: var(--sd-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-box img {
    height: 60px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    text-decoration: none;
    color: var(--sd-blue);
    font-weight: bold;
    transition: 0.3s;
}

.nav-list a:hover {
    color: var(--sd-gray);
}

/* Hero Section / Startseite */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    color: var(--sd-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Der leuchtende Button */
.btn-start {
    display: inline-block;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 800;
    color: white;
    background-color: var(--sd-blue);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 0 0 rgba(0, 80, 136, 0.7);
    animation: pulsing 2s infinite;
    transition: transform 0.2s;
}

@keyframes pulsing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 80, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(0, 80, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 80, 136, 0); }
}

.btn-start:hover {
    transform: scale(1.05);
}

/* Formular & Kundenbereich */
.container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.status-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.status-in_progress { background: #fef3c7; color: #92400e; border: 1px solid #f59e0b; }
.status-rejected { background: #fee2e2; color: #991b1b; border: 1px solid #ef4444; }
.status-success { background: #dcfce7; color: #166534; border: 1px solid #22c55e; }

/* Mobile */
@media (max-width: 768px) {
    .main-header { flex-direction: column; }
    .nav-list { padding: 0; margin-top: 15px; }
}