/* eugengross.net – gemeinsame Ergänzungen (Layout, Home-Button, Footer, Name) */

/* Footer immer ganz unten am Seitenende */
html { height: 100%; }
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Visitenkarte sauber zentriert (Name/Skills untereinander) */
#business-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#business-card-wrap h1 {
    white-space: nowrap;
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    margin-bottom: 10px;
}
#business-card-wrap hr {
    width: 80%;
    max-width: 340px;
}

/* Home-Button oben links (nur auf Unterseiten), bleibt beim Scrollen sichtbar */
.home-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-shadow: none;
    z-index: 1000;
    transition: background 0.2s ease;
}
.home-badge:hover,
.home-badge:focus {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    text-decoration: none;
}

/* Footer: Impressum + andere Seiten + LinkedIn – alles in einer Reihe, ganz unten, ohne Trennlinie */
.site-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 16px;
    padding: 14px 20px;
    font-family: 'Jura', sans-serif;
    font-size: 13px;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap;
}
.site-footer a:hover,
.site-footer a:focus {
    color: #fff;
    text-decoration: underline;
}
.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
}
.linkedin-link:hover,
.linkedin-link:focus {
    color: #fff;
    text-decoration: none;
}
.linkedin-link svg {
    width: 20px;
    height: 20px;
    display: block;
}
