body {
    margin: 0;
    font-family: bahnschrift,Arial, sans-serif;
    color: rgb(0, 0, 0);
}

/* --- HEADER & NAVIGATION --- */
.topbar {
    background: #6d6d6d;
    color: #fff;
    font-size: 0.95em;
    padding: 3px 0;
    text-align: center;
    letter-spacing: 1px;
}
.header-logo-area {
    background: #e6e6e6;
    text-align: center;
    padding: 3px 0 3px 0;
    position: relative;
}
.mmn-logo {
    display: block;
    margin: auto;
    max-width: 500px;
    height: auto;
    max-height: 150px;
    position: relative;
}
@media (max-width: 700px) {
    .header-logo-area {
        padding: 10px 0 6px 0;
    }
    .mmn-logo {
        max-width: 70vw;
        max-height: 60px;
        left: 0;
        margin: auto;
    }
    .topbar {
        font-size: 0.85em;
        padding: 4px 0;
    }
}
.header-navbar-bg {
    background: url('Assets/Bilder/BannerKnopR.png') center bottom;
    background-size: auto;
    padding-bottom: 0;
    position: relative;
}
.header-navbar-bg nav {
    background: transparent;
    margin: 0;
    padding: 10px 0;
}

/* --- NAVIGATION BUTTONS --- */
nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    border: 2px solid #d3d3d3;
    border-radius: 10px;
    padding: 10px;
    transition: background-color 0.5s ease;
    max-height: 80px;
    overflow: hidden;
    background: transparent;
}
nav a img {
    width: 40px;
    height: 40px;
    margin-top: 8px;
    margin-bottom: 0;
    max-height: 40px;
}
nav a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Menü-Button standardmäßig ausblenden */
.menu-toggle-btn {
    display: none;
}

/* --- MOBIL: Menü-Button sichtbar, Menü ein-/ausblendbar --- */
@media (max-width: 700px) {
    .header-navbar-bg {
        background: #c5c5c5 !important;
        padding: 5px;
    }
    .menu-toggle-btn {
        display: block;
        background: #d20062;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 1.2em;
        font-weight: bold;
        padding: 8px 20px;
        margin: 10px auto 0 auto;
        cursor: pointer;
    }
    nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 0;
    }
    nav.open {
        display: flex;
    }
    nav a {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        background: #d20062;
        color: #fff;
        border-radius: 8px;
        border: none;
        margin: 0 16px;
        padding: 12px 18px;
        min-height: 56px;
        font-size: 1.1em;
        box-shadow: 0 2px 8px #0001;
        max-height: none;
        overflow: visible;
        transition: background 0.2s;
    }
    nav a img {
        margin: 0 14px 0 0;
        max-height: 32px;
        width: 32px;
        height: 32px;
    }
    nav a span {
        margin: 0;
        font-weight: bold;
        font-size: 1em;
        text-align: left;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background: url('Assets/Bilder/BannerKnopRfooter.png') center top;
    background-size: auto;
    position: relative;
    color: white;
}

.footer-logo {
    display: block;
    margin: 0 auto 20px auto; /* Zentriert das Logo und fügt unten einen Abstand hinzu */
    width: auto; /* Passe die Größe des Logos an */
    height: 100px; /* Beibehaltung des Seitenverhältnisses */
}

.footer-text-container {
    display: flex;
    justify-content: center;
    gap: 0px; /* Abstand zwischen den Blöcken */
    margin: 0px 0;
}

.footer-text-block {
    flex: 1;
    max-width: 300px; /* Begrenzung der Breite der Blöcke */
    text-align: center; /* Text linksbündig */
}

footer p {
    margin: 5px 0; /* Reduziert den Abstand zwischen den Absätzen */
    line-height: 1.0; /* Verringert den Zeilenabstand */
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9; /* Heller Hintergrund für den Hauptbereich */
}

.large-content-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%; /* Nimmt die gesamte Breite ein */
    max-width: 1200px; /* Begrenzung der maximalen Breite */
    text-align: center;
}

.large-content-box h2 {
    margin-bottom: 15px;
    font-size: 2em;
    color: #222222;
}

.large-content-box p {
    font-size: 1.2em;
    color: #313131;
    line-height: 1.8;
}

.main-text-block {
    flex: 1;
    max-width: 90%; /* Begrenzung der Breite der Blöcke */
    margin: 0 auto; /* Zentriert den Block */
    text-align: center; /* Text zentriert */
}

hr {
    border: none;
    border-top: 2px solid #ddd; /* Farbe und Dicke der Linie */
    margin: 20px 0; /* Abstand oberhalb und unterhalb der Linie */
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00A3A2; /* Standardfarbe */
    color: white;
    text-decoration: none;
    border-radius: 5px; /* Abgerundete Ecken */
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Weicher Übergang */
}

.link-button:hover {
    background-color: #d20063; /* Farbe beim Hover */
    transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
}

.text-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den Blöcken */
}

.text-block {
    flex: 1 1 45%; /* Zwei Blöcke nebeneinander auf großen Bildschirmen */
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: left;
}

/* Mobile Ansicht: Blöcke untereinander */
@media (max-width: 1260px) {
    .text-block {
        flex: 1 1 100%; /* Volle Breite, untereinander */
    }
}

.button-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.modul-btn {
    flex: 1 1 0;
    background: #f1f1f1;
    color: #000000;
    border-radius: 10px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 24px;
    border-color: #d20063;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-color:#d200622f; 
    border-style:inset;
}

.modul-btn img {
    max-height: 200px;
    margin-bottom: 0px;
}

.modul-btn:hover, .modul-btn.active {
    background: #d200622f;
}

.modul-box {
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    padding: 20px;
    max-width: 100%;
    margin: 0 auto 20px auto;
    display: none;
    min-height: 800px;
}

.split-container {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    align-items: flex-start; /* Text oben ausrichten */
}
.split-left, .split-right {
    flex: 1 1 0;
    padding: 16px;
    box-sizing: border-box;
}
@media (max-width: 500px) {
    .split-container {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        gap: 16px;
    }
    .split-left, .split-right {
        width: 100%;
        min-width: 0;
        padding: 8px;
    }
    .preisliste {
        width: 100%;
        max-width: 100%;
    }
}

.preisliste {
    width: 500px;
    margin: 24px auto;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    background: #fafbfc;
    box-shadow: 0 2px 8px #0001;
    font-family: inherit;
}

.preis-header {
    background:#00A3A2; /* Standardfarbe */
;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px 10px 0 0;
    letter-spacing: 1px;
}

.preis-inhalt {
    padding: 12px 18px 18px 18px;
}

.preis-item {
    margin-bottom: 8px;
    border-bottom: 1px solid #c4c4c4;
    padding-bottom: 6px;
}

.preis-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
}

.preis-detail span:last-child {
    font-weight: bold;
    color: #d20062;
}

.preis-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 500px) {
    .preisliste {
        max-width: 98vw;
        padding: 0;
    }
    .preis-inhalt {
        padding: 10px 6px 12px 6px;
    }
}

.download-btn {
    margin-top: 18px;
    padding: 16px 24px;
    background: #00A3A2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    width: 500px;
}
.download-btn:hover {
    background: #d20063;
}

.anfrage-form {
    max-width:900px;
    margin: 32px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fafbfc;
    border: 1px solid #d20063;
    border-radius: 10px;
    padding: 24px 18px;
}
.anfrage-form label {
    font-weight: 500;
    color: #005;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
}
.anfrage-form input, .anfrage-form select, .anfrage-form textarea {
    padding: 7px 8px;
    border-radius: 5px;
    border: 1px solid #d20063;
    font-size: 1em;
}
.anfrage-form button {
    margin-top: 10px;
    padding: 10px 0;
    background: #00A3A2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.anfrage-form button:hover {
    background: #d20063;
}

/* Neue Media Queries für kleinere Bildschirme */
@media (max-width: 600px) {
    .large-content-box {
        padding: 10px;
        max-width: 100vw;
    }
    .preisliste {
        width: 100%;
        max-width: 100vw;
        margin: 16px 0;
        padding: 0;
    }
    .download-btn {
        width: 100%;
        min-width: 0;
        padding: 12px 0;
        font-size: 1em;
    }
    .split-container {
        flex-direction: column;
        gap: 10px;
    }
    .split-left, .split-right {
        padding: 6px;
    }
    .button-row {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .modul-btn {
        font-size: 1em;
        padding: 10px 0;
        min-width: 0;
        max-width: 100%;
    }
    .modul-btn img {
        max-height: 80px;
        width: auto;
        height: auto;
    }
    .anfrage-form {
        max-width: 100vw;
        padding: 10px 2vw;
        gap: 10px;
    }
    .anfrage-form input,
    .anfrage-form select,
    .anfrage-form textarea {
        font-size: 1em;
        padding: 8px 4px;
    }
    .anfrage-form button {
        font-size: 1em;
        padding: 10px 0;
    }
    .footer-logo {
        height: 60px;
        width: auto;
        margin-bottom: 10px;
    }
    .footer-text-container {
        flex-direction: column;
        gap: 8px;
    }
    .footer-text-block {
        max-width: 100%;
        text-align: center;
    }
}

/* Standard: Menü horizontal */
.menu-toggle-btn {
    display: none;
}

@media (max-width: 700px) {
    .menu-toggle-btn {
        display: block;
        background: #d20062;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 1.2em;
        font-weight: bold;
        padding: 8px 20px;
        margin: 10px auto 0 auto;
        cursor: pointer;
    }
    nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 0;
    }
    nav.open {
        display: flex;
    }
    nav a {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        background: #d20062;
        color: #fff;
        border-radius: 8px;
        border: none;
        margin: 0 16px;
        padding: 12px 18px;
        min-height: 56px;
        font-size: 1.1em;
        box-shadow: 0 2px 8px #0001;
        max-height: none;
        overflow: visible;
        transition: background 0.2s;
    }
    nav a img {
        margin: 0 14px 0 0;
        max-height: 32px;
        width: 32px;
        height: 32px;
    }
    nav a span {
        margin: 0;
        font-weight: bold;
        font-size: 1em;
        text-align: left;
    }
}

.mmn-logo {
    display: block;
    margin: auto;
    max-width: 500px;
    height: auto;
    max-height:  150px;
}
@media (max-width: 600px) {
    .mmn-logo {
        max-width: 100vw;
        max-height: 100px;
        margin: auto;
    }
}