/* Gross Management – gemeinsame Ergänzungen (Orange-Vignette-Theme, Home-Button, Footer) */

/* Oranger Vignette-Hintergrund: warmes Zentrum, dunkler Rand (reiner Farbverlauf, kein Muster/Bild) */
body {
    background: radial-gradient(ellipse at center, #fb923c 0%, #ea580c 32%, #7c2d0a 58%, #1a0800 82%, #050d1a 100%);
    background-attachment: fixed;
    color: #ffffff;
}

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

a {
    color: #ffd9a8;
}
a:hover,
a:focus {
    color: #ffffff;
}

/* 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(2rem, 7vw, 3.4rem);
    color: #ffffff;
    text-shadow: 0 0 24px rgba(249, 115, 22, 0.6);
    margin-bottom: 10px;
}
#business-card-wrap hr {
    width: 80%;
    max-width: 340px;
}

/* Home-Button oben links (nur auf Unterseiten) */
.home-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(5, 13, 26, 0.35);
    border: 1px solid rgba(255, 217, 168, 0.45);
    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(5, 13, 26, 0.6);
    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.8);
    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.8);
}
.linkedin-link:hover,
.linkedin-link:focus {
    color: #fff;
    text-decoration: none;
}
.linkedin-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Impressum/Datenschutz-Textblöcke: helle Schrift auf dunklem Vignettenrand */
.impressum {
    color: #f5ede1;
    text-align: left;
}
.impressum a {
    color: #ffd9a8;
}
