/* Placeholder Website - Coming Soon Template */

/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hauptcontainer */
.placeholder-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    padding: 2rem;
}

/* Alternative Hintergründe (auskommentiert) */
/*
.placeholder-container {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.placeholder-container {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.placeholder-container {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}
*/

/* Content Wrapper */
.content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Logo Sektion */
.logo-section .logo {
    max-width: 600px;
    max-height: 240px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.icon-placeholder {
    animation: pulse 2s infinite;
}

/* Hauptinhalt */
.main-content h1 {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content .lead {
    color: #636e72;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
}

.additional-info {
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Kontakt Links */
.contact-info a {
    color: #6c5ce7;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #5f3dc4;
}

/* Progress Bar Sektion */
.progress-section {
    margin-top: 2rem;
}

.progress {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Footer */
.footer-section {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Partikel Animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatUp {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .placeholder-container {
        padding: 1rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .main-content h1 {
        font-size: 2.5rem;
    }
    
    .main-content .lead {
        font-size: 1.1rem;
    }
    
    .footer-section {
        bottom: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content .lead {
        font-size: 1rem;
    }
    
    .icon-placeholder i {
        font-size: 2rem !important;
    }
}

/* Print Styles */
@media print {
    .particles,
    .progress-section {
        display: none !important;
    }
    
    .placeholder-container {
        background: white !important;
        color: black !important;
    }
    
    .content-wrapper {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        animation: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .content-wrapper {
        background: white !important;
        border: 2px solid black !important;
        color: black !important;
    }
    
    .main-content h1 {
        color: black !important;
    }
    
    .main-content .lead {
        color: #333 !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .content-wrapper {
        background: rgba(30, 30, 30, 0.95);
        color: #e0e0e0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-content h1 {
        color: #ffffff;
    }
    
    .main-content .lead {
        color: #b0b0b0;
    }
    
    .additional-info {
        border-color: rgba(255, 255, 255, 0.1);
    }
}