/* ---------------------------------------------------- */
/* ROOT (Farbsystem) */
/* ---------------------------------------------------- */
:root {
    --primary-red: #d54b44;
    --primary-red-dark: #8f0000;

    --text-dark: #333;
    --text-light: #ffffff;

    --bg-light: #ffffff;
    --bg-soft: #f5f5f5;

    --border-light: #e5e5e5;
}

/* ---------------------------------------------------- */
/* GLOBAL */
/* ---------------------------------------------------- */
body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Happy Monkey', cursive, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Links allgemein */
a {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------- */
header {
    border-bottom: 1px solid var(--border-light);
    background: #fff;
}

/* ---------------------------------------------------- */
/* NAVIGATION (ELEGANT & RUHIG) */
/* ---------------------------------------------------- */
.bg-red {
    background: var(--primary-red);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* Container */
.bg-red nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Links */
.bg-red .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.2px;

    padding: 8px 12px !important;
    margin-right: 6px;

    border-radius: 4px;
}

/* Hover (ruhig, ohne Animation) */
.bg-red .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

/* Active */
.bg-red .nav-link.active {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

/* Dropdown */
.bg-red .dropdown-menu {
    border: none;
    border-radius: 6px;
    margin-top: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Dropdown Items */
.bg-red .dropdown-item {
    padding: 8px 14px;
    color: #333;
}

.bg-red .dropdown-item:hover {
    background: #f1f1f1;
}

.bg-red .dropdown-item.active {
    background: var(--primary-red);
    color: #fff;
}

/* Icon (Merkzettel) */
.bg-red .bi-bookmark-fill {
    font-size: 1.3rem;
    color: #fff;
    opacity: 0.85;
}

.bg-red .bi-bookmark-fill:hover {
    opacity: 1;
}

/* ---------------------------------------------------- */
/* MAIN HEADER (SEITENTITEL) */
/* ---------------------------------------------------- */
.main-header {
    background: var(--bg-soft);
    padding: 20px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.main-header h1 {
    font-size: 22px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .main-header h1 {
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .main-header h1 {
        font-size: 30px;
    }
}

/* ---------------------------------------------------- */
/* CONTENT */
/* ---------------------------------------------------- */
.section-title,
h2.h4,
h4.card-title {
    color: var(--primary-red);
}

.schrift1 {
    font-size: 14pt;
    line-height: 1.7;
}

/* ---------------------------------------------------- */
/* CARDS */
/* ---------------------------------------------------- */
article.card {
    border: 1px solid var(--border-light);
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
}

/* ---------------------------------------------------- */
/* BUTTONS */
/* ---------------------------------------------------- */
.btn-red {
    background: var(--primary-red);
    color: #fff;
    border: none;
}

.btn-red:hover {
    background: var(--primary-red-dark);
    color: #fff;
}

/* ---------------------------------------------------- */
/* OFFCANVAS */
/* ---------------------------------------------------- */
.offcanvas-red {
    background: var(--primary-red);
}

.offcanvas-red .list-group-item {
    background: var(--primary-red);
    color: #fff;
    border: none;
}

.offcanvas-red .list-group-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------- */
/* LOGIN MODAL */
/* ---------------------------------------------------- */
.modal-header.bg-danger {
    background: var(--primary-red) !important;
}

/* ---------------------------------------------------- */
/* MOBILE */
/* ---------------------------------------------------- */
@media (max-width: 768px) {

    .bg-red nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .bg-red .nav-link {
        width: 100%;
        margin: 2px 0;
    }

}

/* ---------------------------------------------------- */
/* BREADCRUMB – ELEGANT & RUHIG */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* BREADCRUMB – LESBAR & SAUBER */
/* ---------------------------------------------------- */

.breadcrumb {
    background: transparent;
    margin-bottom: 15px;
    padding: 0;
    font-size: 14px;
}

/* Standard Text */
.breadcrumb-item {
    color: #666;
}

/* Links */
.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

/* Hover */
.breadcrumb-item a:hover {
    color: var(--primary-red);
}

/* Separator */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #aaa;
    padding: 0 8px;
}

/* Aktive Seite */
.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

/* Wrapper für bessere Trennung */
.breadcrumb-wrapper {
    background: #fafafa;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    margin-bottom: 20px;
}

/* === FIX Sidebar Newsletter === */

.sidebar-newsletter * {
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}

aside {
    min-width: 200px;
}