html { 
    scroll-behavior: smooth; 
}
body {
    font-weight: 400;
    font-size: 1.2rem !important;
    line-height: 1.6rem;
	letter-spacing: 0px;
    word-break: normal;
	color: rgba(0,0,0,1);
	background-color: rgba(255,255,255,1);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%; 
	height:100%;
	position: relative;
}
body.bg::after {
	content: "";
	position: absolute;
	inset: 0; /* ersetzt top/right/bottom/left: 0 */
	background-image: url("../../files/bt-hero.jpg");
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
    background-attachment: fixed;
	opacity: 0.35;
	z-index: -1;
}
* {
    font-family: 'Roboto Condensed' !important;
}

main > section {
    padding-top: 5rem; padding-bottom: 5rem;
}
.vh-section {
    min-height: 100vh;
    display: grid;
    align-items: center;
}
.navbar-blur {
    backdrop-filter: saturate(180%) blur(8px);
    background-color: rgba(255,255,255,.85);
}
.shadow-soft {
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,.08);
}


a {
    color: rgba(0,0,0,1);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid rgba(0,0,0,0.25);
}
a:hover {
    color: rgba(0,0,0,1);
    border-bottom: 1px solid rgba(0,0,0,1);
}
img.logo {
    height: 2rem;
}
@media (max-width: 991px) {

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500 !important;
}

h1, .fs-1 {
    font-size: 4rem !important;
    line-height: 4.5rem !important;
}
h2, .fs-2 {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
}
h3, .fs-3 {
    font-size: 2.5rem !important;
    line-height: 3rem !important;
}
h4, .fs-4 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
}
h5, .fs-5 {
    font-size: 1.75rem !important;
    line-height: 2rem !important;
}
@media (max-width: 991px) {
    h1, .fs-1 {
        font-size: 2rem !important;
        line-height: 2.5rem !important;
    }
    h2, .fs-2 {
        font-size: 2rem !important;
        line-height: 2.5rem !important;
    }
    h3, .fs-3 {
        font-size: 1.75rem !important;
        line-height: 2rem !important;
    }
    h4, .fs-4 {
        font-size: 1.5rem !important;
        line-height: 1.75rem !important;
    }
    h5, .fs-5 {
        font-size: 1.25rem !important;
        line-height: 1.5rem !important;
    }
}


.navbar a.nav-link.active {
    color: rgba(var(--c-bt-rgb), 1);
}

#hero::afterXX {
	content: "";
	position: absolute;
	inset: 0; /* ersetzt top/right/bottom/left: 0 */
	background-image: url("../../files/bt-hero.jpg");
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	opacity: 0.35;
	z-index: 0;
}

span.highlight {
    border-bottom: 3px solid rgba(var(--c-bt-rgb), 1);
}

/* Collapsible */
.collapsible .eintrag .plus {
    display: block;
}
.collapsible .eintrag[aria-expanded="true"] .plus {
    display: none;
}
.collapsible .eintrag .minus {
    display: none;
}
.collapsible .eintrag[aria-expanded="true"] .minus {
    display: block;
}



:root {
    --speed: 200; /* px per second – stelle hier die Geschwindigkeit ein */
    --fade-size: 150px;
}
.logo-slider {
    position: relative;
    overflow: hidden;
}
.logos-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--fade-size);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(to right, rgba(248,248,248,1), rgba(248,248,248,0));
}
.logos-mask.right {
    right: 0;
    background: linear-gradient(to left, rgba(248,248,248,1), rgba(248,248,248,0));
}
.logos-wrapper {
    display: flex;
    width: max-content;
    position: relative;
}
.logos-wrapper:hover .logos-track {
    animation-play-state: paused;
}
.logos-track {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll var(--duration) linear infinite;
    will-change: transform;
    transition: animation-duration 0.6s ease;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * 100%)); }
}
.logos-track img {
    height: 75px;
    margin: 0 3rem;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}



/* ---------- SASS ---------- */
/* ---------- ROOT ---------- */
:root {
    --c-bt: #af1280;
    --c-bt-rgb: 175,18,128;

    --c-white: #FFFFFF;
    --c-white-rgb: 255,255,255;
}
/* ---------- LILA ---------- */
.text-c-bt,
.text-h-c-bt :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-bt) !important;
}
.bg-c-bt {
    background-color: var(--c-bt) !important;
}
.border-c-bt {
    border-color: var(--c-bt) !important;
}
.verlauf-c-bt {
    background: linear-gradient(to bottom, rgba(var(--c-bt-rgb), 0.5) 0%, rgba(var(--c-bt-rgb), 1) 90%);
}
.btn-c-bt {
    background-color: rgba(var(--c-bt-rgb), 1) !important;
    color: #fff !important;
    border: none;
}
.btn-c-bt:hover {
    background-color: rgba(var(--c-bt-rgb), 0.75) !important;
}
.btn-c-bt:focus,
.btn-c-bt:active {
    background-color: rgba(var(--c-bt-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-bt-rgb), 0.4);
}
.btn-c-bt:disabled {
    background-color: rgba(var(--c-bt-rgb), 0.5) !important;
    opacity: 0.65;
    cursor: not-allowed;
}
/* ---------- WHITE ---------- */
.text-h-c-white :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-white) !important;
}
.bg-c-white {
    background-color: rgba(var(--c-white-rgb), 1) !important;
}
.bg-c-white-01 {
    background-color: rgba(var(--c-white-rgb), 0.1) !important;
}
.bg-c-white-08 {
    background-color: rgba(var(--c-white-rgb), 0.8) !important;
}
.bg-c-white-05 {
    background-color: rgba(var(--c-white-rgb), 0.5) !important;
}
.btn-c-white {
    background-color: rgba(var(--c-white-rgb), 0.75) !important;
    color: rgba(var(--c-bt-rgb), 1) !important;
}
.btn-c-white:hover {
    background-color: rgba(var(--c-white-rgb), 1) !important;
}
.btn-c-white:focus,
.btn-c-white:active {
    background-color: rgba(var(--c-white-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-white-rgb), 0.4);
}
