/* ============================================================
   GLOBAL – Basis für gesamte Website
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    background: #f2f4f7;
    color: #1a1a1a;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ============================================================
   HEADER – INFOBAR (blau oben)
============================================================ */

#seitenkopf-info {
    background: #0077a8;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 0;
}

#seitenkopf-info .info-inhalt {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

#seitenkopf-info a {
    color: #ffffff;
    font-weight: 500;
}



/* ============================================================
   HEADER – NAVIGATION
============================================================ */

#seitenkopf-navi {
    background: #ffffff;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    padding: 12px 0;
    z-index: 2000;
}

.kopf-inhalt {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kopf-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-kreis {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00a7e1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.logo-textblock {
    display: flex;
    flex-direction: column;
}

.logo-haupttitel {
    font-weight: 700;
    font-size: 17px;
}

.logo-untertitel {
    font-size: 13px;
    color: #555;
}

/* NAV Links */

.hauptmenue {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hauptmenue__link {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background-color 0.2s, color 0.2s;
}

.hauptmenue__link:hover {
    background: #00a7e1;
    color: #ffffff;
}

.hauptmenue__link--kontakt {
    background: #00a7e1;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hauptmenue__link--kontakt:hover {
    background: #008ebb;
}

.hauptmenue__link--aktiv {
    background: #00a7e1;
    color: #ffffff;
}


/* ==========================================
   MOBILE NAV FIX (Menü umbrechen)
========================================== */
@media (max-width: 750px) {

    .hauptmenue {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    #seitenkopf-navi .kopf-inhalt {
        flex-direction: column;
        gap: 12px;
    }
}




/* ============================================================
   STARTSEITE – HERO-Bereich
============================================================ */

#hero-bereich {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(180deg, rgba(0,0,0,0.88), rgba(0,0,0,0.7)),
        url('../img/hero-lines.png') center/cover no-repeat;
}

/* Container im Hero – sorgt für perfekte Zentrierung */
#hero-bereich .hero-inhalt {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;      /* horizontal mittig */
    justify-content: center;  /* vertikal mittig */
    text-align: center;
}

/* Textbereich */
.hero-text {
    color: #ffffff;
    width: 100%;
    max-width: 900px;
}

/* Hauptüberschrift */
.hero-text h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0px;
}

/* Untertitel */
.hero-text p {
    font-size: 14px;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Button */
.btn-haupt {
    background: #00a7e1;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: background-color 0.3
}

.btn-haupt:hover {
    background: #008ebb;
    transform: translateY(-1px);
}




/* ============================================================
   STARTSEITE – Hinweisbox „Unsere Services“
============================================================ */


.hinweis-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hinweis-box p {
    color: #444;
    font-size: 16px;
    margin-bottom: 18px;
}

.btn-service-hinweis {
    display: inline-block;
    background: #00a7e1;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service-hinweis:hover {
    background: #008bbb;
}



/* ============================================================
   STARTSEITE – Textinfos
============================================================ */

.bereich-textinfo {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto 80px auto;
	text-align: center;
}

.textinfo-inhalt h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
}

.textinfo-inhalt ul {
    margin-left: 20px;
    margin-bottom: 15px;
	list-style: none;
}

.textinfo-kontakt {
    margin-top: 25px;
    font-weight: 500;
}

.bereich-textinfo ul li {
    margin: 4px 0;          /* Etwas Abstand zwischen den Zeilen */
    font-size: 15px;
}



/* ============================================================
   SERVICESEITE – Titelbereich
============================================================ */

.seiten-titelbereich {
    text-align: center;
    margin: 50px 0 30px 0;
}

.seiten-titelbereich h1 {
    font-size: 34px;
    font-weight: 700;
}

.seiten-titelbereich p {
    margin-top: 8px;
    font-size: 17px;
    color: #555;
}

/* ============================================================
   SERVICESEITE – Kategorien + Layout wie im Screenshot
============================================================ */

/* Grid mit 3 Kategorien nebeneinander */
.service-seite .servicekategorien-grid {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Box für jede Kategorie */
.service-seite .servicekategorie-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Kategorie-Überschrift */
.service-seite .servicekategorie-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

/* Enthaltene Liste */
.service-seite .servicekarten-liste {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Servicekarte – Icon links, Text rechts */
.service-seite .servicekarte--liste {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.25s ease;
}

/* Icon */
.service-seite .servicekarte--liste img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Textblock */
.service-seite .servicekarte-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px 0;
}

.service-seite .servicekarte-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.35;
    margin: 0;
}

/* Hover */
.service-seite .servicekarte--liste:hover {
    border-color: #00a7e1;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}


/* SONSTIGES */
.service-seite .servicekategorie-single {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto 60px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-seite .servicekategorie-single h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .service-seite .servicekategorien-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 750px) {
    .service-seite .servicekategorien-grid {
        grid-template-columns: 1fr;
    }
}




/* ============================================================
   SERVICESEITE – Call To Action unten
============================================================ */

.service-cta {
    text-align: center;
    margin: 50px 0 80px 0;
}



/* ============================================================
   FOOTER
============================================================ */

#seitenfuss {
    background: #0c1a2b;
    color: #ffffff;
    padding: 16px 0;
    font-size: 14px;
}

.seitenfuss-inhalt {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.seitenfuss-links a {
    color: #ffffff;
    margin-left: 10px;
    opacity: 0.8;
}

.seitenfuss-links a:hover {
    opacity: 1;
}
