/* Reset und Basis-Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #e8f4fd 0%, #b8d4f0 100%);
    min-height: 100vh;
    color: #1a365d;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

/* Hintergrund-Dekoration */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.content {
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo und Illustration */
.logo-section {
    margin-bottom: 2.5rem;
}

.firefighter-illustration {
    margin-bottom: 1.5rem;
}

.firefighter-illustration img,
.fire-truck-image {
    width: 200px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.firefighter-illustration img:hover,
.fire-truck-image:hover {
    transform: translateY(-5px);
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 0;
}

/* Nachrichten-Bereich */
.message-section {
    margin-bottom: 3rem;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 1rem;
    position: relative;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #ef4444);
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Social Media */
.social-media {
    margin-bottom: 2rem;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #4267B2);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-link.website {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

/* Kontakt-Informationen */
.contact-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.contact-text {
    font-size: 1.1rem;
    color: #1a365d;
    margin: 0;
}

.contact-text i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.contact-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1d4ed8;
}

/* Footer */
.footer {
    margin-top: 2rem;
    text-align: center;
}

.footer p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .firefighter-illustration img,
    .fire-truck-image {
        width: 160px;
        height: 105px;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1.6rem;
    }
    
    .firefighter-illustration img,
    .fire-truck-image {
        width: 130px;
        height: 85px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

.firefighter-illustration {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.message-section {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-media {
    animation: fadeInUp 1s ease-out 1s both;
}

.contact-info {
    animation: fadeInUp 1s ease-out 1.2s both;
}
