/* Farbpalette basierend auf SOUPSTER Original-Design */
:root {
    --bg-color: #E9ECEF;
    --primary-color: #C8043C;
    --text-dark: #333333;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header als schmale Navigationsleiste */
.header {
    background: var(--bg-color);
    padding: 0.5rem 1rem;
    text-align: right;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #99032a;
    text-decoration: underline;
}

/* Logo Bereich - direkt auf grauem Hintergrund */
.logo-section {
    padding: 2rem 1rem;
    text-align: center;
}

.logo-container {
    max-width: 300px;
    margin: 0 auto;
}

.logo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(200, 4, 60, 0.3);
    transition: transform 0.3s ease;
    background: var(--white);
    padding: 1rem;
}

.logo:hover {
    transform: scale(1.02);
}

/* Hauptinhalt - Visitenkarte */
.main-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeIn 0.6s ease forwards 0.2s;
}

/* Kontaktinformationen */
.contact-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(200, 4, 60, 0.1);
    border: 1px solid rgba(200, 4, 60, 0.2);
}

.contact-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(200, 4, 60, 0.2);
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #99032a;
    text-decoration: underline;
}

/* Fußzeile */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }

    .logo-container {
        max-width: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 0.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .logo-section {
        padding: 1.5rem 1rem;
    }

    .main-content {
        padding: 0 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.8rem;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .logo-container {
        max-width: 200px;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .header {
        text-align: center;
    }
}

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