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

body {
    background-color: #0f172a; /* Edles Dunkelblau/Grau */
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Die Profilkarte */
.card {
    background-color: #1e293b; /* Etwas helleres Dunkelblau */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    border: 1px solid #334155;
}

/* Profilbild */
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #38bdf8; /* Moderner Hellblau-Akzent */
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.25); /* Sanfter blauer Glow-Effekt */
}

h1 {
    font-size: 1.8rem;
    color: #f8fafc;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.95rem;
    color: #38bdf8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.description {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Moderne Trennlinie (zu den Rändern ausfaded) */
.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #334155, transparent);
    margin: 25px 0;
}

/* Tech Stack Titel */
.section-title {
    font-size: 0.75rem;
    color: #64748b; /* Edles, dezentes Grau */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

/* Fähigkeiten / Badges */
.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.badge {
    background-color: #334155;
    color: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Links und Kontakt */
.links {
    display: flex;
    justify-content: center;
    gap: 24px; /* Mehr Abstand für die Logos */
}

.links a {
    color: #94a3b8; /* Standardmäßig dezentes Grau */
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover-Effekt: Färbt sich blau und hebt sich leicht an */
.links a:hover {
    color: #38bdf8;
    transform: translateY(-3px);
}

/* Größe der SVG-Logos */
.links svg {
    width: 28px;
    height: 28px;
}

/* Copyright Footer */
.copyright {
    font-size: 0.7rem;
    color: #475569; /* Etwas dunkleres, sehr dezentes Grau */
    margin-top: 25px;
    letter-spacing: 0.5px;
}
