/* Globale Stile und Typografie */
:root {
    --primary-color: #0d1117; /* Dunkler Hintergrund, wie bei vielen Streaming-Seiten */
    --secondary-color: #161b22; /* Leicht abgesetzte Sektionen */
    --accent-color: #EA2F30; /* Ihre gewünschte Akzentfarbe */
    --text-color-light: #f0f6fc;
    --text-color-muted: #8b949e;
    --font-family: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color-light);
    background-color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header und Navigation */
.header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-color-light);
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text-color-light);
    padding: 0.5rem 1rem;
    transition: color 0.3s, background-color 0.3s;
    font-weight: 700;
}

.nav ul li a:hover {
    color: var(--accent-color);
}

/* Allgemeine Sektionen */
.section {
    padding: 4rem 0;
    text-align: center;
}

.section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 900;
}

.about, .videos {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.primary-button {
    background-color: var(--accent-color);
    color: var(--text-color-light);
    border: 2px solid var(--accent-color);
}

.primary-button:hover {
    background-color: #c7292a; /* Dunklere Akzentfarbe beim Hover */
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Sektion */
.hero {
    background-color: var(--primary-color);
    padding: 6rem 0;
    text-align: left;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-color-light);
    font-weight: 900;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color-muted);
}

.hero-image {
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    border-radius: 50%; /* Runde Form für das Profilbild */
    flex-shrink: 0;
    overflow: hidden;
}

/* Streams Sektion */
.stream-info {
    max-width: 600px;
    margin: 0 auto 2rem;
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-left: 5px solid var(--accent-color);
    text-align: left;
    border-radius: 5px;
}

.stream-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stream-time, .stream-platform {
    font-size: 1.1rem;
    color: var(--text-color-muted);
}

.schedule-link {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.schedule-link a {
    color: var(--accent-color);
}

/* Videos Sektion */
.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px; /* Standard 16:9 Verhältnis für Video-Embed */
    background-color: #24292e;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-muted);
    font-style: italic;
}

/* Socials Sektion */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--text-color-light);
    padding: 10px 15px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #080a0e;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--secondary-color);
}

.footer p {
    color: var(--text-color-muted);
}

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

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

/* Media Queries für mobile Ansichten */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }

    .nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav ul li a {
        padding: 0.5rem 0.75rem;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
        margin-bottom: 2rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .video-placeholder {
        height: 200px;
    }
}