/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GEMEINSAMER HINTERGRUND */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;

    background: url("img/hero-industrie.jpg") center / cover no-repeat fixed;
}

/* DUNKLES OVERLAY */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: -1;
    pointer-events: none; /* <<< DAS IST DER FIX */
}


/* ================= STARTSEITE ================= */
.start {
    height: 100vh;
    overflow: hidden;
}

.center {
    justify-content: center;
    transform: translateY(-40px);
}


.logo {
    width: 480px;
    max-width: 90%;
}

.main-button {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 18px 40px;
    background: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.main-button:hover {
    background: #0c6cd4;
    transform: translateY(-3px);
}

/* ================= LEISTUNGEN ================= */
.content {
    overflow-y: auto;
}

.top {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-small {
    width: 220px;
}
/* Logo Hover – subtil & professionell */
.top a img.logo-small {
    transition: transform 0.25s ease;
}

.top a:hover img.logo-small {
    transform: scale(1.03);
}
.back {
    color: #1e90ff;
    text-decoration: none;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 60px;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ZWEI NEBENEINANDER */
    gap: 40px;
}

h1 {
    margin-bottom: 40px;
    color: #1e90ff;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.box {
    background: rgba(0,0,0,0.55);
    padding: 25px;
    border-left: 4px solid #1e90ff;
    font-weight: bold;
}
/* TEXTBOXEN */
.text-box,
.kontakt-box {
    background: rgba(0,0,0,0.55);
    padding: 30px;
    max-width: 700px;
    line-height: 1.6;
    border-left: 4px solid #1e90ff;
}
/* Kategorien Leistungen */
.category {
    background: rgba(15, 15, 15, 0.75);
    padding: 30px 35px;
    border-left: 4px solid #1e90ff;
    border-radius: 6px;
}

.category h2 {
    margin-bottom: 18px;
    font-size: 22px;
    color: #1e90ff;
}

.category ul {
    list-style: none;
    padding: 0;
}


.category ul li {
    margin-bottom: 10px;
    padding-left: 14px;
    position: relative;
}

.category ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #1e90ff;
    font-weight: bold;
}
.lang-switch {
    margin-top: 10px;
    font-size: 14px;
}

.lang-switch a {
    color: #ccc;
    text-decoration: none;
    margin: 0 4px;
}

.lang-switch a.active {
    color: #1e90ff;
    font-weight: bold;
}


@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr; /* eine Spalte */
        padding: 100px 20px 40px;
    }
}
.tech-image {
    grid-column: 1 / -1;   /* GANZE BREITE */
    margin: 20px 0 80px 0;
    text-align: center;
}

.tech-image img {
    width: 100%;
    max-width: 1400px;
    height:320px;
object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}
.tech-captions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-captions span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #dbe6f3;
    padding: 6px 14px;
    background: rgba(0,0,0,0.45);
    border-radius: 6px;
}
.seo-fullwidth {
    grid-column: 1 / -1;          /* <<< GANZE GRID-BREITE */
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 20px;

    line-height: 1.8;
    font-size: 1.05rem;
    color: #e0e0e0;
}


/* =========================
   KONTAKTSEITE
========================= */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-intro {
    margin: 20px 0 50px 0;
    font-size: 17px;
    color: #dbe6f3;
    max-width: 800px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.contact-card {
    background: rgba(15, 15, 15, 0.75);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.contact-card h2 {
    color: #1e90ff;
    margin-bottom: 16px;
}

.contact-card p,
.contact-card li {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-card a {
    color: #eaf1fb;
    text-decoration: none;
}

.contact-card a:hover {
    color: #1e90ff;
}

.contact-card ul {
    list-style: none;
    padding-left: 0;
}

.contact-card ul li::before {
    content: "›";
    margin-right: 8px;
    color: #1e90ff;
}

.contact-card.highlight {
    border-left: 4px solid #1e90ff;
}

.contact-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
}

.contact-footer a {
    color: #9fb6d6;
    text-decoration: none;
}

.contact-footer a:hover {
    color: #1e90ff;
}
.hero-text {
    margin-top: 35px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Headline – modern, technisch */
.hero-text h1 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Subtext – klar & reduziert */
.hero-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #c9d6e8;
}

.main-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Navigation Buttons */
.main-nav a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;

    background: rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

/* Hover Effekt */
.main-nav a:hover {
    background: #1e90ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30,144,255,0.6);
}
/* Navigation + Sprache in einer Zeile */
.nav-bar {
    margin-top: 10px;              /* weniger Abstand nach oben */
    transform: translateY(-30px);  /* Navigation höher ziehen */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}


/* Hauptnavigation */
.main-nav {
    display: flex;
    gap: 40px;
}

/* Nav-Buttons */
.main-nav a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;

    background: rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: #1e90ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30,144,255,0.6);
}

/* Sprachumschaltung */
.lang-switch {
    font-size: 14px;
    letter-spacing: 1px;
    color: #b7c7dd;
}

.lang-switch a {
    color: #b7c7dd;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 8px;
    transition: color 0.2s ease;
}

.lang-switch a:hover {
    color: #1e90ff;
}

/* Aktive Sprache */
.lang-switch .active {
    color: #ffffff;
    border-bottom: 2px solid #1e90ff;
}

/* =========================
   SPRACHUMSCHALTUNG OBEN RECHTS
========================= */
.lang-switch-top {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 1000;

    display: flex;
    gap: 14px;

    background: rgba(0,0,0,0.45);
    padding: 8px 14px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* Einzelne Sprache */
.lang-switch-top a {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #c9d6e8;
    text-decoration: none;

    transition: all 0.25s ease;
}

/* Hover */
.lang-switch-top a:hover {
    color: #1e90ff;
}

/* Aktive Sprache */
.lang-switch-top a.active {
    color: #ffffff;
}
/* =========================
   KONTAKT – GESAMT LAYOUT
========================= */

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* HERO */
.contact-hero {
    text-align: center;
    margin-bottom: 80px;
}

.contact-hero h1 {
    font-size: 38px;
    color: #1e90ff;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 17px;
    line-height: 1.6;
    color: #dbe6f3;
    max-width: 800px;
    margin: 0 auto 35px;
}

/* CTA */
.contact-hero .cta-button {
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    padding: 16px 38px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-hero .cta-button:hover {
    background: #0f6fdc;
    transform: translateY(-3px);
}

/* =========================
   MAIN GRID
========================= */

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Karten */
.contact-card {
    background: rgba(15, 15, 15, 0.75);
    padding: 34px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.contact-card h2 {
    color: #1e90ff;
    margin-bottom: 20px;
}

.contact-card p,
.contact-card li {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-card ul {
    list-style: none;
    padding-left: 0;
}

.contact-card ul li::before {
    content: "›";
    margin-right: 8px;
    color: #1e90ff;
}

.contact-card.highlight {
    border-left: 4px solid #1e90ff;
}

/* FOOTER */
.contact-footer {
    margin-top: 80px;
    text-align: center;
    font-size: 14px;
}

.contact-footer a {
    color: #9fb6d6;
    text-decoration: none;
}

.contact-footer a:hover {
    color: #1e90ff;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}
/* =========================
   IMPRESSUM & DATENSCHUTZ
========================= */

.legal-page {
    display: block;                 /* KEIN Grid */
    max-width: 900px;
    margin: 0 auto;
}

/* Überschriften wie Startseite */
.legal-page h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Textbox modern & ruhig */
.legal-page .text-box {
    background: rgba(0,0,0,0.55);
    padding: 35px 40px;
    margin-bottom: 50px;

    border-left: 4px solid #1e90ff;
    border-radius: 8px;

    line-height: 1.65;
    font-size: 15.5px;
    color: #dbe6f3;
}

/* Zwischenüberschriften Datenschutz */
.legal-page h2 {
    margin-top: 30px;
    margin-bottom: 12px;

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #1e90ff;
}

/* Listen sauber */
.legal-page ul {
    margin-top: 10px;
    padding-left: 18px;
}

.legal-page ul li {
    margin-bottom: 8px;
}

/* Links */
.legal-page a {
    color: #9fc4ff;
    text-decoration: none;
}

.legal-page a:hover {
    color: #1e90ff;
}
/* =========================
   SPRACHUMSCHALTUNG – FIX KLICKBARKEIT
========================= */
.lang-switch {
    position: fixed;
    top: 22px;
    right: 28px;

    z-index: 2000;          /* <<< ÜBER ALLEM */
    pointer-events: auto;

    font-size: 14px;
    letter-spacing: 1px;
    color: #b7c7dd;

    background: rgba(0,0,0,0.45);
    padding: 8px 14px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.header-nav {
    margin-left: auto;
    display: flex;
    gap: 26px;
}

.header-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.header-nav a:hover {
    color: #1e90ff;
}


