/* gross4net UG – gemeinsame Ergänzungen (dunkles Vignette-Theme, Home-Button, Footer, Logo) */

/* Dunkler, edler Vignette-Hintergrund (deutlich sichtbar): warmer, heller Kern -> tiefes Schwarz außen */
body {
    background: radial-gradient(ellipse 78% 78% at 50% 46%, #6a5636 0%, #453718 26%, #241b0e 52%, #100b05 76%, #070402 100%);
    background-attachment: fixed;
    color: #efe6d4;
    text-shadow: none;
}

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

a {
    color: #d4af62;
}
a:hover,
a:focus {
    color: #f0d79a;
}

/* Visitenkarte sauber zentriert (Logo/Name untereinander) */
#business-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#business-card-wrap h1 {
    white-space: nowrap;
    font-size: clamp(1.7rem, 6vw, 2.9rem);
    color: #f4ecdc;
    text-shadow: none;
    margin: 4px 0 10px;
}
#business-card-wrap hr {
    width: 80%;
    max-width: 320px;
    border-top: 1px solid rgba(212, 175, 98, 0.4);
}

/* Logo als edles Emblem auf hellem Elfenbein-Träger, damit alle Details lesbar bleiben */
.brand-logo {
    display: block;
    width: 58%;
    max-width: 210px;
    height: auto;
    background: #f7f1e6;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
    margin: 0 auto 6px;
}

/* Home-Button oben links (nur auf Unterseiten) */
.home-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 98, 0.55);
    color: #d4af62;
    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(212, 175, 98, 0.18);
    color: #f0d79a;
    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(239, 230, 212, 0.75);
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap;
}
.site-footer a:hover,
.site-footer a:focus {
    color: #f0d79a;
    text-decoration: underline;
}
.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(239, 230, 212, 0.75);
}
.linkedin-link:hover,
.linkedin-link:focus {
    color: #f0d79a;
    text-decoration: none;
}
.linkedin-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

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