

/* Vertikale Trennlinien nur zwischen den Nav-Items */
.navbar-nav .nav-item + .nav-item {
    border-left: 1px solid #dee2e6;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
}

.navbar .nav-link.active {
    color: #0069b4 !important;
}

/* Optional: nur auf Desktop anzeigen */
@media (max-width: 768px) {
    .navbar-nav .nav-item + .nav-item {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }
}


@media (max-width: 992px) {
    .navbar .nav-link {
        font-size: 0.9rem;
    }
}



html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; padding: 0; margin: 0;
}


.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    font-size: 18px;
}



.rubrik-box {
    position: relative;
    height: 240px;     /* feste Höhe */
    overflow: hidden;
    cursor: pointer;
}

.rubrik-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* dunkles Overlay */
.rubrik-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.3s ease;
}

/* Hover */
.rubrik-box:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* Text mittig */
.rubrikname {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;          /* kleiner für 120px */
    letter-spacing: 0.5px;
    z-index: 2;
    text-align: center;
    padding: 0 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

logo-gradient {
    background: linear-gradient(
        to top,
        #ffffff 0%,
        #f8f9fa 100%
    );
}


.col-lg-4 {
    border-left: 1px solid #eee;
    padding-left: 2rem;
}


.logo-gradient {
    position: relative;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        #f8f9fa 100%
    );
    overflow: hidden;
}

/* Pattern-Ebene */
.logo-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/umpf.png") repeat center / auto 100%;
    opacity: 0.08;          /* hier Stärke einstellen */
    z-index: 0;
}

/* Inhalt über Pattern legen */
.logo-gradient > * {
    position: relative;
    z-index: 1;
}




