/* static/css/scumsektor_rp.css */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Play:wght@400;700&display=swap');

:root {
  --bs-warning: #FF6600;
  --theme-bg-dark: #121212;
  --theme-bg-medium: #1e1e1e;
  --theme-border: #444;
}

body { background-color: var(--theme-bg-dark); background-image: radial-gradient(circle, #2a2a2a 0%, var(--theme-bg-dark) 70%); color: #dee2e6; font-family: 'Play', sans-serif; padding-top: 70px; }
body.wagtail-userbar-visible { padding-top: calc(70px + 42px); }
body.wagtail-userbar-visible .navbar.fixed-top { top: 42px; }
.oswald-font, h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', sans-serif; }

/* 
 * ===================================================================
 * HEADER STYLING (NAVBAR)
 * ===================================================================
 */
.navbar {
    background-color: #1c1c1c;
    background-image: url('../img/dark-denim.png');
    border-bottom: 1px solid var(--theme-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 0 80px rgba(0,0,0,0.3);
    position: fixed;
    /* KORREKTUR: Die folgende Zeile wird entfernt, um das Dropdown nicht abzuschneiden */
    /* overflow: hidden; */ 
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.4);
    animation: rollingscan 8s linear infinite;
}

@keyframes rollingscan { from { transform: translateY(-10px); } to { transform: translateY(80px); } }

/* KORREKTUR: Wir stellen sicher, dass der Inhalt IMMER über den Effekten liegt */
.navbar-brand, .navbar-collapse {
    position: relative;
    z-index: 10;
}

.navbar-brand.logo-text { font-family: 'Oswald', sans-serif; font-size: 2.2rem; letter-spacing: 2px; color: #fff; overflow: hidden; }
.navbar-brand.logo-text::after { content: ''; position: absolute; top: 0; left: -150%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: shine 5s infinite; }
@keyframes shine { 0% { left: -150%; } 50% { left: 150%; } 100% { left: 150%; } }
.navbar-nav .nav-link { position: relative; padding-bottom: 8px; transition: color 0.3s; }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background-color: var(--bs-warning); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease-out; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-item.active .nav-link::after { transform: scaleX(1); transform-origin: left; }

/* ... (Restliche CSS bleibt unverändert) ... */
.hero-section { position: relative; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden; margin-top: -70px; text-align: center; }
.hero-background-media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-color: #000; }
.hero-background-media .hero-background-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); pointer-events: none; object-fit: cover; }
.hero-content { position: relative; z-index: 3; }
.hero-content h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); text-transform: uppercase; color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.8); font-weight: 700; }
.hero-content .hero-sub-headline { font-family: 'Play', sans-serif; font-size: clamp(1.2rem, 3vw, 1.8rem); text-transform: uppercase; color: var(--bs-warning); text-shadow: 1px 1px 5px rgba(0,0,0,0.7); margin-top: 0.5rem; margin-bottom: 2rem; }
.btn-warning { background-color: var(--bs-warning) !important; border-color: var(--bs-warning) !important; color: #fff !important; transition: all 0.3s ease; border-width: 2px; }
.btn-warning:hover { background-color: transparent !important; color: var(--bs-warning) !important; border-color: var(--bs-warning) !important; }

.stream-block-box { position: relative; z-index: 1; border: 1px solid transparent; padding: 2.5rem; overflow: hidden; background: transparent; }
.stream-block-box::before { content: ''; position: absolute; z-index: -2; left: -50%; top: -50%; width: 200%; height: 200%; background-color: #1a1a1a; background-repeat: no-repeat; background-size: 50% 50%, 50% 50%; background-position: 0 0, 100% 0, 100% 100%, 0 100%; background-image: conic-gradient(transparent, rgba(255, 102, 0, 0.5), transparent 30%); animation: rotateBorder 10s linear infinite; }
.stream-block-box::after { content: ''; position: absolute; z-index: -1; left: 1px; top: 1px; width: calc(100% - 2px); height: calc(100% - 2px); background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%), linear-gradient(rgba(0,0,0,0.15) 1px, transparent 1px), url('../img/dark-denim.png'); background-size: 100% 100%, 100% 100%, 100% 4px, auto; animation: moveScanlines 15s linear infinite; }
@keyframes rotateBorder { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes moveScanlines { from { background-position: 0 0, 0 0, 0 0, 0 0; } to { background-position: 0 0, 0 0, 0 60px, 0 0; } }
.text-warning { color: var(--bs-warning) !important; }

.stream-block-box > * + * { margin-top: 1.5rem; }
.rich-text-content h3, .image-card-text h3 { color: var(--bs-warning); font-family: 'Oswald', sans-serif; font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1rem; }
.rich-text-content strong, .image-card-text strong { color: #fff; }
.rich-text-content p, .image-card-text p { color: #adb5bd; line-height: 1.7; }
.figure-caption { color: #adb5bd !important; margin-top: 0.5rem; }
.d-block.mx-auto + figcaption { text-align: center; }
.image-card-link { text-decoration: none; display: block; height: 100%; }
.image-card { position: relative; overflow: hidden; border-radius: .25rem; height: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.image-card:hover img { transform: scale(1.1); }
.image-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0) 90%); padding: 3.5rem 1.5rem 1.5rem 1.5rem; transition: opacity 0.3s ease; }
.image-card-text { color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); margin: 0; }
.site-footer { background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('../img/dark-denim.png'); border-top: 1px solid var(--theme-border) !important; box-shadow: inset 0 5px 20px rgba(0,0,0,0.4); }
.site-footer a { transition: color 0.3s; }
.site-footer a:hover { color: var(--bs-warning) !important; }

/* 
 * ===================================================================
 * WIEDERHERGESTELLT: IMAGE SLIDER STYLING (SWIPER.JS)
 * ===================================================================
 */
.swiper { width: 80%; padding-top: 50px; padding-bottom: 50px; }
.swiper-slide { background-position: center; background-size: cover; width: 400px; height: 300px; border-radius: .25rem; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.swiper-button-next, .swiper-button-prev { color: var(--bs-warning) !important; }
.swiper-button-next:after, .swiper-button-prev:after { text-shadow: 0 0 10px rgba(0,0,0,1); }
.slider-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%); color: #fff; text-align: center; }
.slider-caption h4 { margin-bottom: 0.25rem; font-family: 'Oswald', sans-serif; }
.slider-caption p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 0; }
.slider-link { text-decoration: none; }