/* --- Farbwerte laut Brand Kit ---
           Eisblau:      #AEE1F9
           Frost-Silber: #DDE6ED
           Dunkelgrau:   #1F1F1F
           Weiß:         #FFFFFF
           Neonblau:     #00FFFF
        */

/* --- Seite & Body --- */
html, body {
    margin: 0;
    padding: 0;
    background: #1F1F1F; /* Hintergrundfarbe */
    font-family: 'Lato', sans-serif;
    color: #DDE6ED;
}
body {
    /*display: flex;
    justify-content: center;
    align-items: center;     */
    font-family: 'Lato', sans-serif; /* Haupt-Fließtext */
}

/* --- Container im "Karten"-Look --- */
.container {
    max-width: 400px;
    margin: 60px auto; /* 60px Abstand oben (und unten), auto zentriert horizontal */
    padding: 20px;
    background-color: #DDE6ED;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    color: #1F1F1F;                  /* Dunkelgrau Text */
}

/* --- Profilbild --- */
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #AEE1F9;  /* Eisblau als Rahmen */
    position: absolute;
    top: -50px; /* Bild etwas über den Container platzieren */
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF; /* Weißer Hintergrund unter dem Bild */
}

/* --- Benutzername (H1) --- */
.username {
    margin-top: 60px; /* Platz für das Profilbild */
    font-family: 'Montserrat', sans-serif; /* Title/H1 Schrift */
    font-weight: 800; /* ExtraBold */
    font-size: 2em;
    color: #1F1F1F;
    text-transform: uppercase; /* Montserrat + uppercase für markanten Look */
}

/* --- Kurze Beschreibung (Fließtext) --- */
.bio {
    margin: 5px 0 20px;
    color: #555;
    font-size: 1em;
    font-family: 'Lato', sans-serif; /* Fließtext */
}

/* --- Liste der Links --- */
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.link-item {
    margin: 15px 0;
}

/* --- Link-Buttons --- */
.link-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1em;
    color: #1F1F1F;           /* Dunkelgrau Text */
    background: #AEE1F9;      /* Eisblau Hintergrund */
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}
.link-item a:hover {
    background: #00FFFF;      /* Neonblau Hover */
    color: #1F1F1F;
}

/* --- Icon vor dem Text (falls eigene Icons) --- */
.link-item a img.icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.footer {
    text-align: center;
    margin: 20px 0;
    font-size: 0.85em;
    color: #888; /* Unauffällige Farbe */
}

.footer-link {
    color: #AEE1F9; /* Eisblau oder beliebige Farbe aus deinem Kit */
    text-decoration: none;
    margin-left: 5px; /* Kleiner Abstand vor dem Link */
}

.footer-link:hover {
    color: #00FFFF;  /* Neonblau beim Hover */
    text-decoration: underline;
}
