/* =========================================================
   GLOBAL STYLES
   ========================================================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial Narrow', sans-serif;
    color: #000;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* =========================================================
   HEADER
   ========================================================= */

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo sichtbar machen */
.logo {
    height: 55px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 28px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 20px;
    width: 100%;
}

.mobile-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #000;
}

.mobile-nav.open {
    display: flex !important;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;
    position: relative;
    margin-top: 80px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 5%;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* =========================================================
   USP SECTION
   ========================================================= */

.usp {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.usp-item {
    text-align: center;
    width: 100%;
}

/* =========================================================
   KONTAKT
   ========================================================= */

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-left,
.contact-right {
    width: 50%;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 40px;
    text-align: center;
    background: #f2f2f2;
}

/* =========================================================
   MOBILE FIXES
   ========================================================= */

@media (max-width: 900px) {

    /* Desktop-Navigation ausblenden */
    .desktop-nav {
        display: none !important;
    }

    /* Burger anzeigen */
    .burger {
        display: block !important;
    }

    /* Mobile Navigation sichtbar machen */
    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: #fff;
        padding: 20px;
        width: 100%;
    }

    .mobile-nav.open {
        display: flex !important;
    }

    /* USP untereinander */
    .usp {
        flex-wrap: wrap !important;
        white-space: normal !important;
    }

    .usp-item {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Hero-Text unterhalb des Bildes */
    .hero-content {
        position: static !important;
        padding: 1.5rem 5%;
        text-align: left;
        color: #000 !important;
        text-shadow: none !important;
    }

    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero-img {
        width: 100%;
        height: auto;
        min-height: 55vh !important;
        object-fit: cover;
    }

    /* Kontaktformular untereinander */
    .contact-wrapper {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .contact-left,
    .contact-right {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =========================================================
   Mail + Telefon NICHT blau
   ========================================================= */

.contact-right a[href^="mailto"],
.contact-right a[href^="tel"] {
    color: inherit !important;
    text-decoration: none !important;
}
