/* --- GLOBALE STYLES & VARIABLEN --- */
:root {
    --bg-dark: #0f1115;       /* Tiefes Bühnen-Schwarz */
    --bg-card: #181c24;       /* Etwas helleres Grau für Karten */
    --accent-blue: #00adb5;   /* Cyan-Blau (wie LED-Spots) */
    --accent-purple: #9b5de5; /* Violett für den musikalischen Vibe */
    --text-light: #f3f4f6;    /* Sauberes Weiß für Text */
    --text-muted: #9ca3af;    /* Abgedunkelter Text für Hierarchie */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-purple);
}

/* --- NAVIGATION --- */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(155, 93, 229, 0.1) 0%, var(--bg-dark) 70%);
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--text-light), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-content .job-title {
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 173, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 93, 229, 0.4);
    color: var(--text-light);
}

.btn-secondary {
    border: 2px solid var(--text-muted);
    color: var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    background-color: rgba(0, 173, 181, 0.05);
}

/* --- SECTIONS ALLGEMEIN --- */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--accent-blue);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* --- HOBBIES GRID --- */
.grid-hobbies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 173, 181, 0.3);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-links {
    list-style: none;
    margin-top: 15px;
}

.card-links li {
    margin-bottom: 8px;
}

/* --- TIMELINE (BANDS & PROJEKTE) --- */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-purple);
    border: 3px solid var(--bg-dark);
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-muted);
}

/* --- SOCIAL MEDIA --- */
.text-center {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    transform: scale(1.1);
    color: #fff;
}

.social-link.fb:hover { background-color: #1877f2; }
.social-link.insta:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* --- IMPRESSUM --- */
.impressum-section {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.impressum-section hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.impressum-section h2 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.impressum-section p {
    margin-bottom: 12px;
}

.hint {
    font-style: italic;
    margin-top: 20px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Einfachheitshalber für Mobile ausgeblendet */
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; text-align: center; }
}