/* ---------------------------------------------------------
   Silent Header – Farbvariablen
--------------------------------------------------------- */
:root {
    --silent-bg-dark: #0d0d0f;
    --silent-bg-darker: #0a0a0c;
    --silent-accent: #a82626;
    --silent-text-light: #eaeaea;
    --silent-text-mid: #c7c7c7;

    --silent-topbar-height: 65px;
    --silent-banner-min: 260px;
    --silent-banner-max: 520px;
}

/* ---------------------------------------------------------
   Grundlagen
--------------------------------------------------------- */
body {
    background: var(--silent-bg-dark);
    color: var(--silent-text-light);
}

.forenbreite {
margin:auto auto;
width:80%;
padding:50px;}

/* Container Fix für MyBB */
#container {
    margin: 0 !important;
    padding: 0 !important;
}

/* ---------------------------------------------------------
   Topbar
--------------------------------------------------------- */
.silent-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--silent-topbar-height);

    background: rgba(10, 10, 14, 0.88);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.06);

    z-index: 2000;
}

.silent-topbar-inner {
    height: 100%;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.silent-logo {
    color: var(--silent-text-light);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
}

.silent-topbar-right a {
    color: var(--silent-text-light);
    font-size: 1.25rem;
    margin-left: 18px;
}

.silent-hamburger {
    display: none;
    font-size: 1.6rem;
    color: var(--silent-text-light);
    cursor: pointer;
    margin-left: 14px;
}


/* ---------------------------------------------------------
   Banner
--------------------------------------------------------- */
.silent-banner {
    position: relative;
    margin-top: var(--silent-topbar-height);
    width: 100%;
    overflow: hidden;
}

.silent-banner-bg {
    width: 100%;
    height: auto;
    min-height: var(--silent-banner-min);
    max-height: var(--silent-banner-max);
    object-fit: cover;
    display: block;
}

.silent-banner-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: url(/images/wandpointer.png) 8 2, auto;
}

.silent-banner-title {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    color: var(--silent-text-light);
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

/* ---------------------------------------------------------
   Subnavigation
--------------------------------------------------------- */
.silent-subnav {
    background: var(--silent-bg-darker);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.silent-subnav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.silent-subnav a {
    text-decoration: none;
    color: var(--silent-text-mid);
    font-size: 0.95rem;
    font-weight: 500;
}

.silent-subnav a:hover {
    color: var(--silent-accent);
}

/* ---------------------------------------------------------
   Abstand vor Forum
--------------------------------------------------------- */
.silent-spacer {
    height: 40px;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 850px) {

    .silent-hamburger {
        display: inline-block;
    }

    .silent-topbar-right a {
        display: none;
    }

    .silent-banner-title {
        font-size: 28px;
    }
}
