/* Kontakt Styles */
.contact-section {
    margin: 20px auto; /* Reduzierter Aussenabstand */
    max-width: 90%; /* Nimmt mehr Platz ein */
    text-align: center;
    padding: 20px 15px; /* Reduzierter Innenabstand */
    background: var(--bg-primary);
    border-radius: 10px; /* Etwas weniger abgerundet */
    box-shadow: 0 2px 10px rgba(168, 24, 2, 0.08); /* Weniger Schatten */
}

.contact-section h2 {
    color: var(--bloodred);
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 1.6em; /* Kleinere Schriftgröße */
    margin-bottom: 10px; /* Weniger Aussenabstand */
}

.contact-intro {
    color: var(--text-primary);
    font-family: 'Roboto-Light', serif;
    font-size: 0.9em; /* Kleinere Schriftgröße */
    margin-bottom: 20px; /* Weniger Aussenabstand */
    line-height: 1.4; /* Etwas weniger Zeilenhöhe */
}

.contact-info {
    background: var(--bg-secondary);
    padding: 15px; /* Reduzierter Innenabstand */
    border-radius: 6px; /* Etwas weniger abgerundet */
    border: 1px solid var(--bloodred);
}

.contact-info h3 {
    color: var(--bloodred);
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 1.1em; /* Kleinere Schriftgröße */
    margin-bottom: 15px; /* Weniger Aussenabstand */
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -3px; /* Näher an der Schrift */
    left: 0;
    right: 0;
    height: 1px;
    background: var(--lowred);
}

.contact-info p {
    margin: 10px 0; /* Weniger Aussenabstand */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px; /* Weniger Abstand zwischen den Elementen */
}

.contact-info strong {
    color: var(--text-secondary);
    font-size: 0.8em; /* Kleinere Schriftgröße */
}

/* QR Code */
.contact-section img {
    width: 120px; /* Kleinere Bildgröße */
    height: auto;
    margin: 15px auto; /* Weniger Aussenabstand */
    display: block;
}

/* Email Link */
.contact-info a {
    color: var(--bloodred);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--lowred);
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px; /* Weniger Abstand zwischen den Icons */
    margin-top: 20px; /* Weniger Aussenabstand */
}

.social-links a {
    color: var(--bloodred);
    font-size: 1em; /* Kleinere Icons */
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    color: var(--lowred);
}

/* Dark Mode */
[data-theme="dark"] .contact-section {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Weniger Schatten */
}

[data-theme="dark"] .contact-info {
    border-color: var(--bloodred);
}

/* Responsive für sehr kleine Bildschirme */
@media (max-width: 480px) {
    .contact-section {
        margin: 10px; /* Noch weniger Aussenabstand */
        padding: 15px 10px; /* Noch weniger Innenabstand */
    }

    .contact-section h2 {
        font-size: 1.4em; /* Noch kleinere Schrift */
    }

    .contact-intro {
        font-size: 0.85em; /* Noch kleinere Schrift */
    }

    .contact-info h3 {
        font-size: 1em; /* Noch kleinere Schrift */
    }

    .contact-info strong {
        font-size: 0.75em; /* Noch kleinere Schrift */
    }

    .contact-section img {
        width: 100px; /* Noch kleinere Bildgröße */
        margin: 10px auto; /* Noch weniger Aussenabstand */
    }

    .social-links {
        gap: 10px; /* Noch weniger Abstand zwischen den Icons */
        margin-top: 15px; /* Noch weniger Aussenabstand */
    }

    .social-links a {
        font-size: 0.9em; /* Noch kleinere Icons */
    }
}