/* Grund-Setup */
:root {
    --bg-color: #0f0f0f;
    --text-color: #ffffff;
    --accent-color: #39ff14; /* Neon-Grün */
    --secondary-bg: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(15, 15, 15, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: color 0.3s;
}

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


.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1639899965439-1162e3bf89df?q=80&w=1505&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* Sektionen */
.section {
    padding: 80px 10%;
    text-align: center;
}

.dark {
    background-color: var(--secondary-bg);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #252525;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
}

/* Tabelle */
.gig-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.gig-table td {
    padding: 15px;
    border-bottom: 1px solid #333;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}