:root {
    --bsw-violet: #792351; /* RGB 121/35/81 */
    --bsw-pink: #CF0055;   /* RGB 207/0/85 */
    --bsw-orange: #EE7402; /* RGB 238/116/2 */
    --bsw-dark: #333;
    --bsw-gradient: linear-gradient(90deg, var(--bsw-violet) 0%, var(--bsw-pink) 50%, var(--bsw-orange) 100%);
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: var(--bsw-dark);
}

.navbar-custom {
    background: var(--bsw-gradient);
}
.navbar-custom .nav-link, .navbar-custom .navbar-brand {
    color: white !important;
    font-weight: bold;
}

h1, h2, h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800; /* Heavy */
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* BSW Balken Element */
.headline-bar {
    display: inline-block;
    background: var(--bsw-gradient);
    color: white;
    padding: 5px 15px;
    transform: skew(-8deg); /* Dynamik */
}
.headline-bar span {
    display: inline-block;
    transform: skew(8deg); /* Text gerade rücken */
}

.btn-bsw {
    background-color: var(--bsw-violet);
    color: white;
    border: none;
    font-weight: bold;
}
.btn-bsw:hover {
    background-color: var(--bsw-pink);
    color: white;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
