/* =========================
RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f6f8;
    color: #333;
}

/* Container für alle Inhalte */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
HEADER
========================= */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 42px;
    font-weight: 800;
    color: #0b3c5d;
}

.nav a {
    text-decoration: none;
    color: #0b3c5d;
    margin: 0 15px;
    font-weight: 600;
    font-size: 18px;
}

.nav a:hover {
    color: #e67e22;
}

/* =========================
HERO
========================= */
.hero {
    background: url("images/hero.jpg") center 25% / cover no-repeat;
    height: 520px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(7,47,74,0.9);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.hero-overlay h2 {
    font-size: 34px;
    margin-bottom: 20px;
     color: white;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.green { background: #2ecc71; }
.orange { background: #e67e22; }

/* =========================
SECTIONS
========================= */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    color: #0b3c5d;
    margin-bottom: 30px;
}

/* =========================
SERVICES
========================= */
.services {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

/* =========================
AREA
========================= */
.area {
    background: white;
}

.area-list span {
    background: #eaf3f9;
    padding: 10px 18px;
    margin: 5px;
    display: inline-block;
    border-radius: 20px;
}

/* =========================
ABLAUF
========================= */
.process {
    background: #f4f6f8;
}

.process-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0b3c5d;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    margin: 0 auto 10px;
}

/* =========================
VORHER NACHHER
========================= */
.ba-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ba-item img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
CONTACT
========================= */
.contact-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    background: white;
    padding: 25px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* =========================
MAP
========================= */
.map-container iframe {
    width: 150%;
    height: 400px;
    border: 0;
}

/* =========================
FOOTER (normal, kein Chaos)
========================= */
.footer {
    background: #0b3c5d;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* =========================
WHATSAPP
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
}

/* =========================
SCROLL ANIMATION
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
LOADER
========================= */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0b3c5d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    color: white;
    font-size: 32px;
    font-weight: 800;
}

/* =========================
MOBILE
========================= */
@media (max-width: 768px) {

    .logo { font-size: 32px; }

    .hero {
        height: 380px;
        background-position: center 70%;
    }

    .hero-overlay {
        padding: 20px;
    }

    .hero-overlay h2 {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .ba-item img {
        width: 100%;
        height: 200px;
    }
}


/* =========================
   EINSATZGEBIET BADGES (Premium)
========================= */

.area-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* einzelne Orte */
.area-badge {
    background: #ffffff;
    color: #0b3c5d;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* Hover Effekt */
.area-badge:hover {
    background: #0b3c5d;
    color: white;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    .area-badge {
        font-size: 14px;
        padding: 8px 14px;
    }
}
