/* ==============================
   GRUNDEINSTELLUNGEN
   ============================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #102a56;
    background-color: #ffffff;
}

a {
    color: inherit;
}



/* ==============================
   NAVIGATION
   ============================== */

.navbar {
    min-height: 90px;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav > a {
    text-decoration: none;
    color: #102a56;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

nav > a:hover {
    color: #2474d2;
}

.nav-button {
    padding: 13px 21px;
    border-radius: 8px;
    background-color: #2474d2;
    color: #ffffff !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.nav-button:hover {
    background-color: #195eae;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 42, 86, 0.18);
}



/* ==============================
   HERO / STARTSEITE
   ============================== */

.hero {
    padding: 80px 5% 70px;
    background-color: #f3f7fc;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
    align-items: center;
}

.hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 38px;
}

.hero-text {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.hero-buttons {
    justify-content: center;
}

.hero-image {
    height: 350px;
    order: 2;
}

.hero-fakten {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
}

.hero-fakt {
    width: 100%;
    max-width: 320px;
} 

/* LINKER BEREICH */

.hero-content {
    text-align: left;
}

.hero-small-title {
    margin-bottom: 15px;

    color: #2474d2;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 2px;
}

.hero h1 {
    font-size: 55px;
    line-height: 1.1;

    color: #102a56;
}

.hero h1 span {
    display: block;
    color: #2474d2;
}

.hero-text {
    max-width: 600px;

    margin-top: 25px;

    font-size: 18px;
    line-height: 1.7;

    color: #536174;
}


/* BUTTONS */

.hero-buttons {
    margin-top: 35px;

    display: flex;
    justify-content: flex-start;

    gap: 15px;
    flex-wrap: wrap;
}


/* RECHTES BILD */

.hero-image {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(16, 42, 86, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}


/* ==============================
   HERO FAKTEN
   ============================== */

.hero-fakten {
    max-width: 900px;

    margin: 60px auto 0;

    display: flex;

    justify-content: center;
    align-items: stretch;

    gap: 20px;

    flex-wrap: wrap;
}

.hero-fakt {
    min-width: 200px;
    min-height: 110px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    background-color: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(16, 42, 86, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-fakt:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(16, 42, 86, 0.14);
}

.hero-fakt strong {
    font-size: 22px;
    color: #102a56;
}

.hero-fakt span {
    margin-top: 6px;

    font-size: 14px;
    color: #536174;
} 



/* ==============================
   BUTTONS
   ============================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 8px;
    background-color: #2474d2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 42, 86, 0.18);
}

.button-outline {
    background-color: transparent;
    border: 2px solid #2474d2;
    color: #2474d2;
}

.button-outline:hover {
    background-color: #2474d2;
    color: #ffffff;
}



/* ==============================
   HERO FAKTEN
   ============================== */

.hero-fakten {
    margin: 55px auto 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 850px;
}

.hero-fakt {
    min-width: 190px;
    min-height: 120px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16, 42, 86, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-fakt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 42, 86, 0.14);
}

.hero-fakt strong {
    font-size: 22px;
    color: #102a56;
}

.hero-fakt span {
    margin-top: 6px;
    font-size: 14px;
    color: #536174;
}



/* ==============================
   VERTRAUENSBEREICH
   ============================== */

.vertrauen {
    padding: 35px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.vertrauen-box {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
}

.vertrauen-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease;
}

.vertrauen-item:hover {
    transform: translateY(-4px);
}

.vertrauen-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2474d2;
    color: #ffffff;
    font-weight: bold;
}

.vertrauen-item h3 {
    margin: 0;
    font-size: 18px;
    color: #102a56;
}

.vertrauen-item p {
    margin: 7px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #536174;
}



/* ==============================
   ALLGEMEINE SECTIONS
   ============================== */

.section-title {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.small-title {
    margin-bottom: 12px;
    color: #2474d2;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #102a56;
}

.section-title > p:last-child {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #536174;
}



/* ==============================
   LEISTUNGEN
   ============================== */

.leistungen {
    padding: 110px 5%;
    background-color: #f3f7fc;
}

.leistungen-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leistung-card {
    padding: 32px;
    min-height: 240px;
    background-color: #ffffff;
    border: 1px solid #e3e9f2;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.leistung-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.3;
    color: #102a56;
}

.leistung-card p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #536174;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(16, 42, 86, 0.14);
    border-color: #2474d2;
}



/* ==============================
   UNSERE ARBEIT
   ============================== */

.unsere-arbeit {
    padding: 110px 5%;
    background-color: #ffffff;
}

.arbeits-bilder {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.arbeits-bild {
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
    background-color: #f3f7fc;
    box-shadow: 0 10px 30px rgba(16, 42, 86, 0.12);
}

.arbeits-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.arbeits-bild:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}



/* ==============================
   ÜBER UNS
   ============================== */

.ueber-uns {
    padding: 110px 5%;
    background-color: #f3f7fc;
}

.ueber-uns-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.ueber-uns-text {
    text-align: left;
}

.ueber-uns-text h2 {
    margin: 0;
    font-size: 46px;
    line-height: 1.15;
    color: #102a56;
}

.ueber-uns-text p:not(.small-title) {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #536174;
}

.ueber-uns-fakten {
    display: grid;
    gap: 20px;
}

.fakt {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(16, 42, 86, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.fakt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 42, 86, 0.14);
}

.fakt span {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #2474d2;
}

.fakt p {
    margin: 8px 0 0;
    font-size: 16px;
    color: #536174;
}



/* ==============================
   KONTAKT
   ============================== */

.kontakt {
    padding: 110px 5%;
    background-color: #ffffff;
}

.kontakt-informationen {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kontakt-box {
    padding: 30px;
    background-color: #f3f7fc;
    border: 1px solid #e3e9f2;
    border-radius: 14px;
    text-align: center;
}

.kontakt-box h3 {
    color: #102a56;
    font-size: 19px;
}

.kontakt-box p {
    margin-top: 12px;
    line-height: 1.6;
    color: #536174;
}

.kontakt-box a {
    color: #2474d2;
    text-decoration: none;
}

.kontakt-box a:hover {
    text-decoration: underline;
}

.karte {
    width: 100%;
    max-width: 1150px;
    margin: 50px auto 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 42, 86, 0.12);
}

.karte iframe {
    display: block;
    width: 100%;
    height: 450px;
}



/* ==============================
   FOOTER
   ============================== */

footer {
    padding: 55px 5% 25px;
    background-color: #0b1f3f;
    color: #ffffff;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-container strong {
    font-size: 20px;
}

.footer-container p {
    margin-top: 10px;
    color: #b9c7d9;
    line-height: 1.6;
}

.footer-instagram {
    display: inline-block;
    margin-top: 15px;
    color: #8fc5ff;
    text-decoration: none;
}

.footer-instagram:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-content: flex-start;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #8fc5ff;
}

.footer-copy {
    max-width: 1150px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: #9eafc4;
}



/* ==============================
   UNTERSEITEN
   ============================== */

.unterseite {
    min-height: 65vh;
    padding: 120px 5%;
    background-color: #f3f7fc;
}

.unterseite-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 42, 86, 0.08);
}

.unterseite-container h1 {
    margin: 10px 0 35px;
    font-size: 48px;
    color: #102a56;
}

.unterseite-container h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 24px;
    color: #102a56;
}

.unterseite-container p {
    margin-top: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #536174;
}

.unterseite-container a {
    color: #2474d2;
    text-decoration: none;
}

.unterseite-container a:hover {
    text-decoration: underline;
}



/* ==============================
   TABLET
   ============================== */

@media (max-width: 900px) {

    .navbar {
        flex-direction: column;
        padding: 10px 5% 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .leistungen-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .kontakt-informationen {
        grid-template-columns: repeat(2, 1fr);
    }

}



/* ==============================
   HANDY
   ============================== */

@media (max-width: 700px) {

    .logo img {
        height: 60px;
    }

    nav {
        gap: 10px;
    }

    nav > a {
        font-size: 14px;
    }

    .nav-button {
        padding: 11px 15px;
    }


    .hero {
        padding: 80px 5% 70px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }


    .hero-fakten {
        flex-direction: column;
        align-items: center;
    }

    .hero-fakt {
        width: 100%;
        max-width: 320px;
    }


    .vertrauen-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .leistungen {
        padding: 80px 5%;
    }

    .leistungen-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }


    .unsere-arbeit {
        padding: 80px 5%;
    }

    .arbeits-bilder {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .arbeits-bild {
        height: 280px;
    }


    .ueber-uns {
        padding: 80px 5%;
    }

    .ueber-uns-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ueber-uns-text {
        text-align: center;
    }

    .ueber-uns-text h2 {
        font-size: 36px;
    }


    .kontakt {
        padding: 80px 5%;
    }

    .kontakt-informationen {
        grid-template-columns: 1fr;
        max-width: 500px;
    }


    .karte iframe {
        height: 350px;
    }


    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }


    .unterseite {
        padding: 80px 5%;
    }

    .unterseite-container {
        padding: 30px 25px;
    }

    .unterseite-container h1 {
        font-size: 38px;
    }

} 

/* HERO */
.hero {
    min-height: 650px;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background-color: #ffffff;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 15px 0 25px;
    color: #102a56;
}

.hero-text p:not(.small-title) {
    font-size: 18px;
    line-height: 1.7;
    color: #5d6b7e;
    margin-bottom: 30px;
}

.hero-bild {
    flex: 0 0 420px;
    max-width: 420px;
}

.hero-bild img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 15px 40px rgba(16, 42, 86, 0.15);
} 

@media screen and (max-width: 800px) {
    .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px;
    }

    .hero-text {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .hero-bild {
        width: 100%;
        max-width: 350px;
        flex: none !important;
        order: 2;
    }

    .hero-text {
        order: 1;
    }

    .hero-bild img {
        width: 100%;
        height: auto;
        display: block;
    }
}  