/* RESET & VARIABLES */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #FF0000; /* Agitprop Rot */
    --font-headline: 'Anton', sans-serif;
    --font-body: 'Roboto Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

/* LAYOUT UTILS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.text-left { text-align: left; }

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	position: relative;
}

.main-logo {
    max-width: 300px;
    width: 80%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

#logo-placeholder {
    font-size: 5rem; /* Fallback falls kein Bild da ist */
    display: none;
}

.main-claim {
    font-size: clamp(2rem, 5vw, 6rem); /* Responsive Font Size */
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 10px 20px;
    display: inline-block;
}

/* MARQUEE (Laufschrift) */
.marquee-container {
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: bold;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTIONS */
.content-section {
    padding: 100px 0;
    border-bottom: 1px solid #333;
}

.big-type {
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.1;
}

.highlight {
    color: var(--accent-color);
}

.label {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.body-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.sub-headline {
    font-size: 3rem;
}

/* GRID / PILLARS */
.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.grid-item {
    border: 1px solid #333;
    padding: 30px;
    transition: 0.3s;
}

.grid-item:hover {
    border-color: var(--accent-color);
    background: #0a0a0a;
}

.icon-box {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.grid-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    border-bottom: 1px solid var(--accent-color);
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--accent-color);
}

/* CTA */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.newsletter-form {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 15px;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-family: var(--font-body);
    width: 300px;
}

button {
    padding: 15px 30px;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    font-family: var(--font-headline);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: var(--accent-color);
    color: var(--text-color);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 20px;
}

/* FOOTER */
footer {
    padding: 50px 0;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
}

.footer-links a {
    margin: 0 10px;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.copyright {
    margin-top: 20px;
    opacity: 0.5;
}

/* ANIMATIONS (FADE IN) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* SCROLL REVEAL CLASS */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Zusätzliche Styles für die neue Version */

.hero-subtext {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-top: 20px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dunkler Hintergrund für Sektionen abwechselnd */
.dark-bg {
    background-color: #0a0a0a; /* Ganz leicht heller als schwarz für Kontrast */
}

/* Grid Item Anpassung für Links */
.grid-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* REALITY CHECK BOX */
.reality-box {
    border: 1px solid #333;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto; /* Zentriert die Box */
    text-align: center;
    background-color: #050505; /* Gleiches Schwarz wie Hintergrund */
}

.reality-box h4 {
    color: var(--accent-color); /* Rot */
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.reality-box p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.mail-link {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

.mail-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}
/* GRID VIDEO STYLES */

/* Damit die Boxen um die Videos sauber aussehen */
.video-grid-item {
    padding: 20px; /* Etwas weniger Padding als bei den großen Textboxen */
    display: block; /* Standard Block-Verhalten */
}

.video-grid-item h3 {
    margin-top: 15px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.video-grid-item p {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.7;
}

/* Der Container für das Video im Grid (Responsiv 16:9) */
.small-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
    border: 1px solid #333;
}

.small-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hover Effekt: Roter Rahmen erscheint, wenn man über die Box fährt */
.video-grid-item:hover .small-video-wrapper {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    transition: 0.3s ease;
}
/* SCROLL INDICATOR FIX */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%; /* Nimmt die volle Breite ein, dadurch ist text-align: center möglich */
    text-align: center;
    color: var(--accent-color);
    z-index: 10; /* Damit es sicher über allem anderen liegt */
    cursor: pointer;
    
    /* Startzustand für das eigene Einblenden */
    opacity: 0;
    animation: fadeInSimple 1s ease-out forwards;
    animation-delay: 2.5s; /* Wartet kurz, bis der Rest da ist */
	
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-text {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 2rem;
    line-height: 1;
    /* Der Pfeil hüpft separat, damit er den Container nicht stört */
    animation: bounce 2s infinite; 
}

/* Simples Einblenden ohne Bewegung (verhindert Konflikte) */
@keyframes fadeInSimple {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Die Hüpf-Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* SHARE SECTION */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.share-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-family: var(--font-headline);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.2s ease;
    min-width: 180px; /* Damit sie gleich breit wirken */
    text-align: center;
}

.share-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px); /* Kleiner Hüpfer beim Hover */
    box-shadow: 5px 5px 0px var(--accent-color); /* Harter roter Schatten (Brutalist Style) */
}

/* Responsiv für Handys: Buttons untereinander */
@media (max-width: 600px) {
    .share-btn {
        width: 100%;
    }
}

/* Styling für den echten Button (Copy Link) */
button.share-btn {
    cursor: pointer;
    font-family: var(--font-headline); /* Gleiche Schrift wie die anderen */
    font-size: 1.2rem;
    background: transparent;
    /* Alle anderen Styles erbt er durch die Klasse .share-btn, 
       aber Buttons haben oft Standard-Rahmen, die wir killen müssen: */
}

/* ACCORDION (FAKTEN CHECK) STYLES */

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #333;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-header {
    width: 100%;
    background: transparent;
    padding: 20px 10px;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #111;
}

/* Der "RAUSCHEN" Text (Grau/Dunkel) */
.noise-label {
    font-family: var(--font-headline);
    color: #666;
    margin-right: 15px;
    font-size: 1rem;
    min-width: 80px;
}

/* Die Aussage (Weiß) */
.header-text {
    font-family: var(--font-body);
    color: var(--text-color);
    font-size: 1.1rem;
    flex-grow: 1;
    padding-right: 20px;
}

/* Das Plus Icon (Rot) */
.icon {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

/* Wenn offen: Plus dreht sich zum X */
.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-header.active .header-text {
    color: var(--accent-color); /* Text wird rot wenn offen */
}

/* Der Inhalt (Versteckt am Anfang) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #0a0a0a;
}

.signal-box {
    padding: 30px;
    border-left: 2px solid var(--accent-color); /* Roter Balken links */
    margin: 10px 0 30px 20px; /* Einrückung */
}

.signal-label {
    display: block;
    font-family: var(--font-headline);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Responsiv: Auf Handys untereinander */
@media (max-width: 600px) {
    .accordion-header {
        flex-wrap: wrap;
    }
    .noise-label {
        width: 100%;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }
}

/* QUELLEN BLOCK STYLES */

.source-box {
    padding: 20px 30px 30px 30px; /* Platz um die Links */
    margin: 0 20px 20px 20px; /* Abstand zum Rand */
    border-top: 1px dashed #333; /* Gestrichelte Linie als Trenner */
    background: #0d0d0d; /* Ganz leicht dunklerer Hintergrund */
}

.source-label {
    display: block;
    font-family: var(--font-body); /* Monospace Font */
    font-size: 0.75rem;
    color: #666; /* Dunkelgrau */
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.source-link {
    display: block; /* Jeder Link in neuer Zeile */
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #999; /* Hellgrau */
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.source-link:hover {
    color: var(--accent-color); /* Wird Rot beim Drüberfahren */
    text-decoration: underline;
}

/* Kleines Icon vor dem Link (optional, via CSS generiert) */
.source-link::before {
    content: "↳ ";
    opacity: 0.5;
}