:root {
    --primary-color: #FFD700;
    --dark-bg-color: rgba(0, 0, 0, 0.9);
    --card-bg-color: rgba(33, 37, 41, 0.8);
    --text-color: #f8f9fa;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1518011270032-15f1873151b7');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    scroll-behavior: smooth;
}
.hero-section {
    background-color: var(--card-bg-color);
    color: var(--text-color);
    padding: 100px 0;
    text-align: center;
}
.hero-section h1 {
    font-weight: 700;
}
.bg-dark-transparent {
    background-color: var(--dark-bg-color);
}
.card {
    background-color: var(--card-bg-color);
    border: none;
}
.card-text, .form-label {
    color: var(--text-color);
}
.card-body h3 {
    color: var(--primary-color);
}
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 992px) {
    .container {
        max-width: 90vw;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 60px 0;
    }
}
.separator-line {
    border: 0;
    height: 4px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.75), rgba(255, 215, 0, 0));
}
.peppy-card-effect {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.peppy-card-effect:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(238, 130, 238, 0.6);
}
.content-section {
    display: none;
}
.content-section.active {
    display: block;
}
/* Responsives Layout für 5 Kacheln pro Reihe */
.dj-tile {
    flex-basis: calc(20% - 1rem); /* 5 Kacheln pro Reihe mit Abstand */
    max-width: calc(20% - 1rem);
    flex-grow: 1;
}
/* Media Query für eine verbesserte Darstellung auf kleineren Bildschirmen */
@media (max-width: 992px) {
    .dj-tile {
        flex-basis: calc(33.33% - 1rem); /* 3 Kacheln pro Reihe */
        max-width: calc(33.33% - 1rem);
    }
}
@media (max-width: 768px) {
    .dj-tile {
        flex-basis: calc(50% - 1rem); /* 2 Kacheln pro Reihe */
        max-width: calc(50% - 1rem);
    }
}
@media (max-width: 576px) {
    .dj-tile {
        flex-basis: 100%; /* 1 Kachel pro Reihe */
        max-width: 100%;
    }
}

