/* --- Variablen basierend auf dem Logo --- */
:root {
    /* Logo Farben (angepasst aus dem Bild) */
    --color-orange: #c67d12;  /* Das "Live" Ocker/Orange */
    --color-blue: #009dc4;    /* Das "Events" Blau */
    
    /* Hintergrund & Text */
    --bg-dark: #121212;       /* Sehr dunkles Grau (fast Schwarz) */
    --bg-card: #1e1e1e;       /* Etwas helleres Grau für Karten */
    --text-main: #f0f0f0;     /* Weiß-Grau für bessere Lesbarkeit */
    --text-muted: #888888;    /* Für Sublines */
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Oswald', sans-serif; /* Starke, plakative Schrift wie im Logo */
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Container Utility --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

/* Falls du das echte Bild nutzt: */
.logo-img {
    height: 50px;
    width: auto;
}

/* Text-Logo Nachbau */
.logo-text {
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
}

.logo-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 3px;
}

.text-orange { color: var(--color-orange); }
.text-blue { color: var(--color-blue); }

.nav-links { display: flex; gap: 25px; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--color-blue); }

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.8), rgba(18,18,18,1)); /* Sanfter Übergang ins Schwarze */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; letter-spacing: 2px; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: #ddd; font-weight: 300; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-blue);
    color: #fff;
}
.btn-primary:hover {
    background-color: #007ba1; /* Dunkleres Blau beim Hover */
    transform: translateY(-2px);
}

/* --- Sections --- */
.section { padding: 80px 0; }
.section-darker { background-color: #0a0a0a; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Kleine Linie unter der Überschrift in Orange */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-orange);
    margin: 15px auto 0;
}

/* --- Grid & Cards (Weniger Bunt) --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    padding: 30px;
    border: 1px solid #333;
    border-radius: 5px;
    transition: 0.3s;
}

/* Hover-Effekt: Nur feiner Rand in Logo-Farben, kein bunter Hintergrund */
.card:hover {
    border-color: var(--color-orange);
    transform: translateY(-5px);
}

.card-icon { font-size: 2rem; margin-bottom: 15px; }

.card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.card ul { margin-top: 15px; }
.card ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    color: #bbb;
    font-size: 0.95rem;
}

/* Bulletpoints in Blau */
.card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: bold;
}

/* --- Split Layout (Über uns) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.placeholder-box {
    width: 100%;
    height: 300px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #444;
    color: #555;
}

/* --- Kontakt Box --- */
.contact-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--color-blue);
    margin-bottom: 10px;
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-links a { margin: 0 10px; color: #888; }
.footer-links a:hover { color: var(--color-orange); }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 2rem; }
    .split-layout { grid-template-columns: 1fr; }
    .section-title::after { margin: 15px auto; } /* Zentriert lassen auf Mobile */
}