/* Spielplatzkontrolle Landing CSS */

.spk-landing {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.spk-landing * { box-sizing: border-box; }

.spk-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.spk-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.spk-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.spk-hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.spk-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 15px;
    font-weight: 700;
}

.spk-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0 0 20px;
}

.spk-hero-text {
    font-size: 1.1rem;
    opacity: 0.85;
    margin: 0 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.spk-btn-hero {
    display: inline-block;
    background: #fff;
    color: #1e3a5f;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.spk-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Kontrollarten */
.spk-kontrollarten {
    padding: 80px 20px;
    background: #f8f9fa;
}

.spk-kontrollarten h2 {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 50px;
    color: #1e3a5f;
}

.spk-arten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.spk-art {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.spk-art-badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.spk-art h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #1e3a5f;
}

.spk-art p {
    color: #666;
    margin: 0 0 15px;
}

.spk-art ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.spk-art li {
    margin-bottom: 5px;
}

/* Features */
.spk-features {
    padding: 80px 20px;
    background: #fff;
}

.spk-features h2 {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 50px;
    color: #1e3a5f;
}

.spk-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.spk-feature {
    text-align: center;
}

.spk-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.spk-feature h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: #1e3a5f;
}

.spk-feature p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Checklist */
.spk-checklist {
    padding: 60px 20px;
    background: #1e3a5f;
    color: #fff;
}

.spk-checklist h2 {
    text-align: center;
    font-size: 1.75rem;
    margin: 0 0 40px;
}

.spk-checklist-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.spk-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
}

.spk-checklist-icon {
    font-size: 1.3rem;
}

/* Anfrage */
.spk-anfrage {
    padding: 80px 20px;
    background: #f8f9fa;
}

.spk-anfrage h2 {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 10px;
    color: #1e3a5f;
}

.spk-section-subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 40px;
}

.spk-anfrage-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.spk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .spk-form-row { grid-template-columns: 1fr; }
}

.spk-form-group {
    margin-bottom: 20px;
}

.spk-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.spk-form-group input,
.spk-form-group select,
.spk-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.spk-form-group input:focus,
.spk-form-group select:focus,
.spk-form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.spk-btn-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.spk-btn-submit:hover {
    background: #1d4ed8;
}

.spk-form-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin: 20px 0 0;
}

.spk-success-message {
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.spk-success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.spk-success-message h3 {
    color: #166534;
    margin: 0 0 10px;
}

.spk-success-message p {
    color: #666;
    margin: 0;
}

.spk-error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Login */
.spk-login-hint {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.spk-login-hint a {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .spk-hero { padding: 60px 20px; }
    .spk-hero h1 { font-size: 2rem; }
    .spk-hero-icon { font-size: 3rem; }
    
    .spk-kontrollarten,
    .spk-features,
    .spk-anfrage {
        padding: 60px 20px;
    }
    
    .spk-anfrage-form {
        padding: 25px;
    }
}
