/* impressum.css */

/* Grundlayout für Impressum */
.impressum-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #ecf0f1);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    animation: fadeIn 1.5s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Überschrift */
.impressum-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Kontaktinformationen */
.impressum-container p {
    margin: 1rem 0;
    color: #34495e;
}

.impressum-container strong {
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Links */
.impressum-container a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
}

.impressum-container a:hover {
    color: #c0392b;
    transform: scale(1.05);
}

/* Zurück-Link */
.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-link:hover {
    background-color: #2980b9;
    transform: translateY(-3px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .impressum-container {
        padding: 1.5rem;
    }

    .impressum-container h1 {
        font-size: 2rem;
    }

    .impressum-container p {
        font-size: 0.9rem;
    }

    .back-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}
