/*
Theme Name: MidConsult WIP
Description: Minimal "Work in Progress" Theme mit Logo, Text, Progressbar und Kontaktbutton.
Author: MidConsult
Version: 1.6
*/

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
}

.card img {
    width: 180px;
    margin-bottom: 25px;
}

.card h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    margin-bottom: 20px;
    color: #666;
}

.progress {
    width: 100%;
    height: 20px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-bar {
    width: 45%;
    height: 100%;
    background-color: #0073aa;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    z-index: 10;
}

.contact-section {
    margin: 30px 0;
}

.contact-section h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.button {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #005177;
}

.tagline {
    font-size: 1.4rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 50px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #999;
}