/* ==========================================
   ROOT & GLOBAL
========================================== */

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    --heading-font: "Roboto", sans-serif;
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #00A550;
    --accent-color: #00A550;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

body {
    font-family: var(--default-font);
    color: var(--default-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

/* ==========================================
   HEADER
========================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
}


.header-logo {
    max-height: 100px;
}

.btn-getstarted {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.3s;
}

    .btn-getstarted:hover {
        background: #008c45;
        color: #fff;
    }

/* ==========================================
   HERO (Kontaktbereich)
========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-image: url("../img/home-bg.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        /*background: linear-gradient( to right, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.10) 70%, rgba(0,0,0,0.05) 100% );*/
        z-index: 1;
    }

    .hero .container {
        position: relative;
        z-index: 2;
        color: #fff;
    }

    .hero h3 {
        color: #fff;
    }

.contact-text {
    color: #fff;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .hero {
        background-position: 85% center; /* LKW Fokus */
        background-image: url("../img/home-bg-mobile.png");
        /*background-size: contain;*/ /* ganze Breite/Hohe sichtbar */
        padding: 60px 0;
    }

    .hero::before {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.10) 70%,
            rgba(0, 0, 0, 0.05) 100%
        );
    }
}


/* ==========================================
   CONTACT INFO ITEMS
========================================== */

.contact .info-item {
    display: flex;
    margin-bottom: 30px;
}

    .contact .info-item i {
        background: var(--accent-color);
        color: var(--contrast-color);
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        margin-right: 15px;
    }

    .contact .info-item h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .contact .info-item p {
        margin: 0;
        color: #fff;
    }

/* ==========================================
   FOOTER
========================================== */

.footer {
    background: linear-gradient( 180deg, #ffffff 0%, #f2f8f4 50%, #e6f3ec 100% );
    padding-top: 80px;
    color: #2c2c2c;
    position: relative; /* wichtig für ::before */
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0; /* hinzufügen */
        right: 0; /* oder width: 100% */
        height: 6px;
        background: var(--accent-color);
    }

    /* LKW Wasserzeichen */
    .footer::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 80%;
        background: url("../img/LKW_Footer.svg") no-repeat center;
        background-size: contain;
        transform: translate(-50%, -50%);
        opacity: 0.08; /* 0.05 GANZ dezent */
        pointer-events: none;
    }

.footer-top {
    padding: 0 60px 60px 60px;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer p {
    color: #555;
    line-height: 1.7;
}

.footer a {
    color: #333;
    transition: 0.3s;
}

    .footer a:hover {
        color: var(--accent-color);
    }

.footer-logo {
    max-height: 60px;
}

.footer-bottom {
    background: rgba(0,0,0,0.05);
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .social-icon:hover {
        color: #fff;
        transform: translateY(-4px);
    }

    .social-icon.facebook:hover {
        background: #1877F2;
    }

    .social-icon.instagram:hover {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

/* ==========================================
   SCROLL TOP
========================================== */

.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
    transition: 0.3s;
}

    .scroll-top:hover {
        opacity: 1;
    }

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    padding: 0px;
    text-align: center;
    position: relative;
    height: fit-content;
}

.page-title h1 {
    /*font-size: 42px;*/
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}


/* Mobile Optimierung */
@media (max-width: 768px) {
    .page-title .breadcrumbs ol {
        flex-flow: column;
    }
}


    /*--------------------------------------------------------------
# Impressum Page
--------------------------------------------------------------*/

    /* Linie unter dem Header auf Impressum-Seite */
    body.impressum-page header.header {
        position: relative; /* wichtig für ::after */
    }

        body.impressum-page header.header::after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: -6px; /* direkt unter dem Header */
            width: 100%;
            height: 6px; /* Höhe der Linie */
            background: var(--accent-color);
            /*background: linear-gradient( to top,*/ /* Verlauf von unten nach oben */
            /*rgba(0, 166, 81, 1) 0%,*/ /* kräftiges Grün unten */
            /*rgba(0, 166, 81, 0.5) 100%*/ /* transparenter oben */
            /*);*/
        }


    /* Nur auf Impressum-Seite */
    body.impressum-page #header {
        /*background: linear-gradient( to top,*/ /* Verlauf nach oben */
        /*#00a651,*/ /* Grün unten */
        /*#ffffff*/ /* Weiß oben, oder transparent */
        /*);*/
        background: linear-gradient( to top, #ffffff 0%, #f2f8f4 50%, #e6f3ec 100% );
        color: #2c2c2c;
    }

    /*--------------------------------------------------------------
# PrivacyPolicy Page
--------------------------------------------------------------*/

    /* Linie unter dem Header auf Privacy Policy-Seite */
    body.privacyPolicy-page header.header {
        position: relative; /* wichtig für ::after */
    }

        body.privacyPolicy-page header.header::after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: -6px; /* direkt unter dem Header */
            width: 100%;
            height: 6px; /* Höhe der Linie */
            background: var(--accent-color);
        }


    /* Nur auf Privacy Policy-Seite */
    body.privacyPolicy-page #header {
        background: linear-gradient( to top, #ffffff 0%, #f2f8f4 50%, #e6f3ec 100% );
        color: #2c2c2c;
    }





