/* Impressum Page Styles - Synchronized with Main Page */

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content */
.impressum-page {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.impressum-content {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: var(--transition);
    padding: 10px 20px;
    border-radius: 25px;
    background: #f0f9ff;
}

.back-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    transform: translateX(-5px);
}

.back-link svg {
    width: 20px;
    height: 20px;
}

/* Typography */
.impressum-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impressum-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 50px;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
}

.impressum-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-top: 35px;
    margin-bottom: 20px;
}

.impressum-content p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.impressum-content small {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Lists */
.impressum-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.impressum-content li {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

.impressum-content li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin: 35px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.highlight-box p {
    margin-bottom: 12px;
    color: var(--dark-color);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Links */
.impressum-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.impressum-content a:hover {
    border-bottom-color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #111827 100%);
    padding: 40px 0;
    color: white;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .impressum-page {
        padding: 60px 0;
    }

    .impressum-content {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .impressum-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .impressum-content h2 {
        font-size: 1.5rem;
        margin-top: 40px;
        padding-left: 15px;
    }

    .impressum-content h3 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .impressum-content p {
        font-size: 1rem;
    }

    .back-link {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 20px;
        margin: 30px 0;
    }

    .navbar {
        padding: 15px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .impressum-page {
        padding: 40px 0;
    }

    .impressum-content {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .impressum-content h1 {
        font-size: 1.75rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .impressum-content h2 {
        font-size: 1.3rem;
        margin-top: 35px;
        margin-bottom: 20px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .impressum-content h3 {
        font-size: 1.1rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .impressum-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .impressum-content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .impressum-content li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .back-link {
        padding: 8px 14px;
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .back-link svg {
        width: 18px;
        height: 18px;
    }

    .highlight-box {
        padding: 15px;
        margin: 25px 0;
        border-left-width: 4px;
    }

    .highlight-box p {
        font-size: 0.95rem;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .impressum-content {
        padding: 25px 15px;
    }

    .impressum-content h1 {
        font-size: 1.5rem;
    }

    .impressum-content h2 {
        font-size: 1.2rem;
    }

    .impressum-content h3 {
        font-size: 1.05rem;
    }

    .impressum-content p,
    .impressum-content li {
        font-size: 0.9rem;
    }
}

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

.impressum-content {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.impressum-content h2 {
    transition: var(--transition);
}

.impressum-content h2:hover {
    padding-left: 25px;
}

/* Fixed Call Button */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.fixed-call-button:hover {
    background: #1e40af;
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 99, 235, 0.5);
}

.fixed-call-button svg {
    width: 30px;
    height: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 99, 235, 0.6);
    }
    100% {
        box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
    }
}

@media (max-width: 768px) {
    .fixed-call-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .fixed-call-button svg {
        width: 24px;
        height: 24px;
    }
}