:root {
    --main-orange: #e66a00;
    --logo-anthrazit: #2b2b2b;
    --hero-bg-image: url('img/hero-bg-orange.png');
    --hero-min-height: 150px;          /* ? zurück */
    --hero-padding: 16px;
    --hero-logo-max-width: 400px;
    --hero-text-size: 1.35rem;         /* ? HERO-SCHRIFT GRÖSSER */
    --box-bg: #ffffff;
    --box-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    background: #f4f4f4;
    color: #222;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    position: relative;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: var(--hero-min-height);
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: var(--hero-padding);
    text-align: center;

    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-img {
    max-width: var(--hero-logo-max-width);
    width: 100%;
    height: auto;
}

/* HERO-TEXT – GRÖSSER ALS ÜBERSCHRIFTEN */
.hero-subline {
    color: #ffffff;
    font-weight: 700;
    font-size: var(--hero-text-size);
    transform: translateY(-28px);
}

/* =========================
   BOXEN
========================= */
.boxes {
    max-width: 1100px;
    margin: -65px auto 0 auto;
    padding: 40px 20px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    position: relative;
    z-index: 3;
}

.box {
    background: var(--box-bg);
    padding: 35px;
    border-radius: var(--box-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ÜBERSCHRIFTEN */
.box h3 {
    margin: 0;
    color: var(--main-orange);
}

/* Icon + Überschrift */
.box-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.box-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Kontakt-Kachel: fette Texte orange */
.box:last-child strong {
    color: var(--main-orange);
}

/* Links in Boxen unauffällig */
.box a {
    color: inherit;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 800px) {
    .boxes {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .hero-subline {
        font-size: 1.15rem;
        transform: translateY(-22px);
    }

    .hero-logo-img {
        max-width: 300px;
    }

    .box-icon {
        width: 36px;
        height: 36px;
    }
}

/* =========================
   FOOTER – LOGO-ANTHRAZIT
========================= */
footer {
    background: var(--logo-anthrazit);
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

footer a {
    color: var(--main-orange);
    text-decoration: none;
}

.footer-sep {
    margin: 0 8px;
}
