/*
Theme Name: Finduss Media Hip-Hop
Theme URI: https://findussmedia.de
Author: Finduss Media
Author URI: https://findussmedia.de
Description: Custom Hip-Hop & Deutschrap Theme für Finduss Media mit dunklem Design und Neon-Akzenten
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: findussmedia
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #141414;
    --accent-neon: #00ffff;
    --accent-yellow: #ffd700;
    --accent-orange: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 2px solid var(--accent-neon);
    padding: 30px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title {
    font-size: 2.5em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    margin: 0;
}

.site-title a {
    text-decoration: none;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-top: 5px;
    letter-spacing: 2px;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.main-navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-neon);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5em, 8vw, 5em);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-yellow) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.3em;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Content */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-neon), transparent);
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-yellow), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.event-card:hover::before {
    opacity: 1;
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    font-weight: 900;
    color: var(--bg-darker);
    text-transform: uppercase;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 25px;
}

.event-date {
    color: var(--accent-neon);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.event-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.event-title a:hover {
    color: var(--accent-neon);
}

.event-location {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-neon);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Articles */
.articles-section {
    margin-top: 80px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-left-color: var(--accent-neon);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
}

.article-date {
    color: var(--accent-yellow);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--accent-neon);
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* WordPress Content */
.entry-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.entry-content h2 {
    color: var(--text-primary);
    font-size: 2em;
    font-weight: 700;
    margin: 40px 0 20px;
    border-left: 4px solid var(--accent-neon);
    padding-left: 20px;
}

.entry-content h3 {
    color: var(--text-primary);
    font-size: 1.5em;
    font-weight: 600;
    margin: 30px 0 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    color: var(--accent-neon);
    text-decoration: none;
}

.entry-content a:hover {
    color: var(--accent-yellow);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

.entry-content blockquote {
    border-left: 4px solid var(--accent-yellow);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
    padding: 40px 20px;
    margin-top: 80px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    list-style: none;
}

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

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

.copyright {
    color: var(--text-secondary);
    font-size: 0.85em;
    margin-top: 20px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation {
        justify-content: center;
        margin-top: 20px;
    }

    .site-title {
        font-size: 2em;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5em;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-neon);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

