/* Allgemeine Stile */
:root {
    --red: #c41e17;
    --black: #222;
    --wood-light: #d9bc8b;
    --wood-medium: #ba9b6b;
    --wood-dark: #8a6d3b;
    --white: #fff;
    --gray: #f4f4f4;
    
    /* Für Dark Mode */
    --background: var(--wood-light);
    --text: var(--black);
    --card-bg: var(--white);
    --header-bg: var(--white);
    --footer-bg: var(--black);
    --footer-text: var(--white);
}

/* Dark Mode Variablen */
[data-theme="dark"] {
    --background: #121212;
    --text: #f4f4f4;
    --card-bg: #1e1e1e;
    --header-bg: #1e1e1e;
    --red: #ff4136;
    --footer-bg: #0a0a0a;
    --footer-text: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/GOP-Logo.png');
    background-size: 500px;
    background-attachment: fixed;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] body::before {
    opacity: 0.05;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

h1::after, h2::after, h3::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--red);
    bottom: -5px;
    left: 0;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--red);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--red);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--wood-dark);
}

.btn {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--red);
}

.btn:hover {
    background-color: transparent;
    color: var(--red);
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    max-height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--red);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 20px;
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.theme-toggle:hover i {
    color: var(--red);
}

/* Streaming Platforms */
.platforms {
    background-color: var(--card-bg);
    text-align: center;
    transition: background-color 0.3s ease;
}

.platform-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    width: 150px;
}

.platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    color: var(--red);
}

.platform i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--red);
}

.platform span {
    font-weight: 600;
}

/* Episodes */
.episodes {
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.episode-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.episode-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.episode-placeholder {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* About Section */
.about {
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Contact */
.contact {
    background-color: var(--card-bg);
    text-align: center;
    transition: background-color 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social {
    font-size: 2rem;
    color: var(--red);
    transition: transform 0.3s ease;
}

.social:hover {
    transform: scale(1.2);
}

.email-link {
    display: inline-block;
    font-size: 1.2rem;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--card-bg);
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, background-color 0.3s ease;
}

.email-link i {
    margin-right: 10px;
    color: var(--red);
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 20px 0;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .menu-toggle {
        display: block;
    }
    
    .theme-toggle {
        margin-left: 15px;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--header-bg);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .platform-links {
        gap: 10px;
    }

    .platform {
        width: 120px;
        padding: 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .platform {
        width: 100px;
        padding: 10px;
    }

    .platform i {
        font-size: 2rem;
    }
}
