/* 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;
}

/* =======================================================================
   LANDING-ONE-PAGER (nur body.landing) – dunkles, lesbares Theme
   Hero behält den orangen Vignetten-Look der Marke, die Textsektionen
   liegen auf ruhigem Dunkel mit Gold-/Orange-Akzenten.
   kontakt.php / impress.php bleiben unberührt (kein .landing).
   ======================================================================= */
body.landing {
    background: #0b0e17 linear-gradient(180deg, #180c05 0%, #120b0a 22%, #0b0e17 100%) no-repeat;
    background-attachment: scroll;
    color: #ece7df;
    /* Gut lesbarer System-Font für Fließtext; Jura bleibt für Überschriften/Marke */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}
body.landing a { color: #ffcfa0; }
body.landing a:hover, body.landing a:focus { color: #ffffff; }

body.landing h1,
body.landing h2,
body.landing h3,
body.landing .brand,
body.landing .kicker,
body.landing .eyebrow,
body.landing .tag-row,
body.landing .trust-bar,
body.landing .step-no {
    font-family: 'Jura', sans-serif;
}

/* ---------- Sticky-Kopfzeile ---------- */
.site-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px clamp(16px, 4vw, 40px);
    background: rgba(9, 12, 20, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 217, 168, 0.14);
}
.site-topbar .brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap;
}
.site-topbar .brand:hover { color: #ffd9a8; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ---------- Sprach-/Flaggen-Umschalter ---------- */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lang-switch .flag {
    display: inline-flex;
    line-height: 0;
    border-radius: 4px;
    padding: 0;
    opacity: 0.5;
    filter: grayscale(35%);
    transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    outline: none;
}
.lang-switch .flag:hover,
.lang-switch .flag:focus { opacity: 0.9; transform: translateY(-1px); }
.lang-switch .flag.active {
    opacity: 1;
    filter: none;
    box-shadow: 0 0 0 2px rgba(255, 217, 168, 0.85);
}
.flag-svg {
    width: 30px;
    height: 20px;
    display: block;
    border-radius: 4px;
}

/* ---------- CTA-Buttons ---------- */
.topbar-cta {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #1a0800 !important;
    font-family: 'Jura', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.topbar-cta:hover,
.topbar-cta:focus {
    color: #1a0800 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(234, 88, 12, 0.5);
}
.btn-cta {
    display: inline-block;
    margin-top: 14px;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #1a0800 !important;
    font-family: 'Jura', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-cta:hover,
.btn-cta:focus {
    color: #1a0800 !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(234, 88, 12, 0.55);
}
.btn-cta-lg { font-size: 19px; padding: 16px 42px; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px clamp(20px, 5vw, 40px) 90px;
    background:
        radial-gradient(ellipse 120% 90% at 50% 32%,
            #fb923c 0%, #ea580c 26%, #9a3a12 46%, #4a1c08 66%, #1a0d0a 82%, rgba(11,14,23,0) 100%);
}
.hero-inner { max-width: 900px; }
.hero .eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff6ec;
}
.hero h1 {
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 22px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-lead {
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
    font-weight: 600;
    color: #fff2e6;
    max-width: 760px;
    margin: 0 auto 20px;
    line-height: 1.4;
}
.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255, 245, 236, 0.9);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}
.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    animation: scrollBob 1.8s ease-in-out infinite;
}
.scroll-hint:hover, .scroll-hint:focus { color: #fff; background: rgba(255,255,255,0.12); }
@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* ---------- SEKTIONEN ---------- */
.section {
    padding: clamp(56px, 9vw, 100px) clamp(20px, 5vw, 40px);
}
.section-alt {
    background: rgba(255, 255, 255, 0.028);
    border-top: 1px solid rgba(255, 217, 168, 0.08);
    border-bottom: 1px solid rgba(255, 217, 168, 0.08);
}
.section-inner {
    max-width: 860px;
    margin: 0 auto;
}
.kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    font-weight: 600;
    color: #f5b46f;
    margin: 0 0 10px;
}
.section h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    line-height: 1.18;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 22px;
}
.section p {
    font-size: 1.06rem;
    line-height: 1.75;
    color: rgba(236, 231, 223, 0.82);
    margin: 0 0 18px;
}
.section .lead-line {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: #ffe6cf;
    line-height: 1.4;
    margin-bottom: 22px;
}

/* ---------- Keyword-Chips ---------- */
.tag-row {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.tag-row li {
    font-size: 12.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 217, 168, 0.9);
    background: rgba(251, 146, 60, 0.09);
    border: 1px solid rgba(255, 217, 168, 0.22);
    border-radius: 999px;
    padding: 5px 13px;
}

/* ---------- Karten ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin: 28px 0 30px;
}
.card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 217, 168, 0.16);
    border-radius: 14px;
    padding: 22px 22px 20px;
}
.card h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #ffd9a8;
    margin: 0 0 8px;
}
.card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(236, 231, 223, 0.8);
    margin: 0;
}

/* ---------- Nummerierte Schritte ---------- */
.steps {
    list-style: none;
    counter-reset: none;
    padding: 0;
    margin: 28px 0 34px;
}
.steps li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 217, 168, 0.12);
}
.steps li:last-child { border-bottom: 1px solid rgba(255, 217, 168, 0.12); }
.step-no {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #1a0800;
    font-size: 20px;
    font-weight: 600;
}
.steps h3 {
    font-size: 1.14rem;
    font-weight: 600;
    color: #ffffff;
    margin: 4px 0 6px;
}
.steps p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(236, 231, 223, 0.8);
}

/* ---------- Modell-Box ---------- */
.model-box {
    background: linear-gradient(135deg, rgba(251,146,60,0.12), rgba(234,88,12,0.06));
    border: 1px solid rgba(255, 217, 168, 0.3);
    border-left: 4px solid #fb923c;
    border-radius: 14px;
    padding: 24px 26px;
    margin-top: 8px;
}
.model-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd9a8;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.model-box p { margin: 0; color: rgba(245, 237, 225, 0.92); }

/* ---------- Trust-Leiste ---------- */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 217, 168, 0.14);
}
.trust-bar span {
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: rgba(255, 245, 236, 0.86);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 217, 168, 0.2);
    border-radius: 8px;
    padding: 6px 12px;
}

/* ---------- Abschluss-Sektion ---------- */
.section-cta {
    text-align: center;
    background:
        radial-gradient(ellipse 80% 120% at 50% 100%, rgba(234,88,12,0.22), rgba(11,14,23,0) 70%);
}
.section-cta .section-inner { max-width: 720px; }
.section-cta .cta-line {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 245, 236, 0.92);
    line-height: 1.55;
    margin-bottom: 6px;
}
.section-cta .cta-note {
    font-size: 0.92rem;
    color: rgba(236, 231, 223, 0.6);
    margin-top: 22px;
}

/* ---------- Fußzeile immer sichtbar (nur Landingpage) ---------- */
body.landing .site-footer {
    position: sticky;
    bottom: 0;
    z-index: 900;
    background: rgba(9, 12, 20, 0.82);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 217, 168, 0.14);
    padding: 9px 20px;
    font-size: 12.5px;
    gap: 4px 16px;
}

/* ---------- Responsiv ---------- */
@media (max-width: 560px) {
    .site-topbar .brand { font-size: 15px; }
    .topbar-cta { display: none; }          /* auf sehr schmalen Screens Platz sparen; CTA steht im Hero */
    .steps li { flex-direction: row; }
    /* Fußzeile mobil: schlanke, einzeilige Leiste – kleinere Schrift, engere Abstände */
    body.landing .site-footer {
        gap: 2px 10px;
        font-size: 11px;
        padding: 7px 8px;
        white-space: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    body.landing .site-footer .linkedin-link svg { width: 17px; height: 17px; }
}

