/* SLAPPP Visitenkarte - Minimalistisches Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #383838;
    --accent: #0066ff;
    --text: #383838;
    --bg: #ffffff;
    --border: #e8e8e8;
    --shadow: rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.visitenkarte {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

/* Logo im Zentrum */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px var(--shadow));
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-bottom: 2rem;
}

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 30px rgba(0, 102, 255, 0.15));
}

.company-info {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.tagline {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Minimale Navigation */
.minimal-nav {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: var(--accent);
    border-color: var(--border);
    background: rgba(0, 102, 255, 0.02);
}

.back-link {
    left: 2rem;
    right: auto;
}

/* Impressum Seite */
.impressum-page {
    justify-content: flex-start;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.impressum-content {
    max-width: 700px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

.impressum-content h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.impressum-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.impressum-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.impressum-content section {
    margin-bottom: 2.5rem;
}

.impressum-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.impressum-content strong {
    color: var(--primary);
    font-weight: 600;
}

.impressum-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

.impressum-content li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.impressum-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 300;
}

.impressum-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .visitenkarte {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .minimal-nav {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .back-link {
        left: 1.5rem;
    }
    
    .impressum-page {
        padding-top: 5rem;
    }
    
    .impressum-content h1 {
        font-size: 1.75rem;
    }
    
    .impressum-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
        margin-bottom: 1.5rem;
    }
    
    .logo-wrapper {
        margin-bottom: 3rem;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .impressum-content {
        font-size: 0.95rem;
    }
    
    .impressum-content h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .impressum-content h2 {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
}

/* Print Styles */
@media print {
    .minimal-nav {
        display: none;
    }
    
    .visitenkarte {
        min-height: auto;
    }
}
