/* =========================================================
   BASIS INSTELLINGEN & KLEUREN (Night Studio Vibe)
   ========================================================= */
:root {
    --bg-color: #0f0f13;        
    --card-bg: #1c1c24;         
    --text-main: #f4f4f5;       
    --text-muted: #a1a1aa;      
    --neon-cyaan: #00f2fe;      
    --neon-paars: #4facfe;      
}

/* Zorgt dat alles soepel schaalt en het lettertype goed staat */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    
    /* De magische, bewegende achtergrond */
    background: linear-gradient(-45deg, #0f0f13, #1a1a2e, #0d1b2a, #0f0f13);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =========================================================
   1. DE TOPBALK (HEADER & MENU)
   ========================================================= */
.top-balk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(15, 15, 19, 0.85);
    backdrop-filter: blur(15px); 
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5em;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--neon-cyaan), var(--neon-paars));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--neon-cyaan);
}

nav a.chat-knop {
    background: linear-gradient(45deg, var(--neon-paars), var(--neon-cyaan));
    padding: 10px 25px;
    border-radius: 50px;
    color: #000 !important; 
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

nav a.chat-knop:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
}

/* =========================================================
   2. HERO SECTIE (Bovenaan met de speler)
   ========================================================= */
.hero-sectie {
    text-align: center;
    padding: 150px 20px;
    background: radial-gradient(circle at center top, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.2));
}

.hero-sectie h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-sectie p {
    font-size: 1.2em;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* =========================================================
   3. HET TEAM (DJ Overzicht)
   ========================================================= */
.team-sectie {
    padding: 80px 5%;
    text-align: center;
}

.team-sectie h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(45deg, var(--neon-cyaan), var(--neon-paars));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dj-kaart {
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.dj-kaart:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 254, 0.1);
}

.dj-kaart img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyaan);
    margin-bottom: 20px;
    padding: 5px;
}

.dj-kaart h3 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.dj-kaart p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9em;
}

/* =========================================================
   4. FOOTER
   ========================================================= */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #0a0a0c;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9em;
}

/* =========================================================
   5. UITZENDSCHEMA VAN VANDAAG
   ========================================================= */
.schema-sectie {
    padding: 80px 5%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2); 
}

.schema-sectie h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(45deg, var(--neon-paars), var(--neon-cyaan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.schema-lijst {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schema-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 25px;
    transition: transform 0.3s ease;
}

.schema-item:hover {
    transform: translateX(10px);
    border-color: rgba(79, 172, 254, 0.3);
}

.schema-foto {
    margin-right: 20px;
    flex-shrink: 0;
}

.schema-foto img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-cyaan);
    padding: 2px;
}

.nonstop .schema-foto img {
    border-color: var(--text-muted);
    opacity: 0.5;
}

.schema-tijd {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--neon-cyaan);
    width: 100px;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 20px;
}

.schema-info {
    text-align: left;
}

.schema-info h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-main);
}

.schema-info p {
    margin: 5px 0 0 0;
    color: var(--text-muted);
    font-size: 0.9em;
}

.nonstop .schema-tijd {
    color: var(--text-muted);
    font-size: 1em;
}

/* =========================================================
   6. VACATURE / DJ GEZOCHT SECTIE
   ========================================================= */
.vacature-sectie {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vacature-content {
    max-width: 800px;
    margin: 0 auto;
}

.vacature-content h2 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-cyaan), var(--neon-paars));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vacature-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.vacature-content strong {
    color: var(--neon-cyaan);
}

.aanmeld-knop {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-cyaan), var(--neon-paars));
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95em;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    transition: all 0.3s ease;
}

.aanmeld-knop:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.6);
}