:root {
    --accent: #bebebe; 
    --bg-dark: #3b3b3b;
    --nav-bg: #ac2d2d;
}

body { 
    background-color: #141414; 
    color: #cecece; 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    text-align: center; 
}

/* Navigatie */
nav { 
    background: #1a1a1a; 
    padding: 25px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

nav ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
}

nav a, a { 
    color: var(--accent); 
    text-decoration: none; 
    font-weight: 500; 
    transition: 0.3s;
}

nav a:hover, a:hover { 
    filter: brightness(1.2); 
}

/* Secties en Profiel */
.section { 
    margin-bottom: 50px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.profile-pic { 
    width: 200px; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 50%; 
    margin-top: 20px;
}

.bio-text { 
    text-align: left; 
    max-width: 600px; 
    margin: 20px auto; 
    color: #ccc; 
}

/* HET GRID: Werkt op PC en Mobiel (ongeacht resolutie) */
.work-grid, .video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Afbeeldingen in het grid */
.work-grid img { 
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 4px; 
    display: block;
}

/* Video items (zowel YouTube als lokaal) */
.video-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.video-item iframe, .video-item video {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tooltip */
.tooltip { cursor: help; font-size: 0.8em; vertical-align: super; color: var(--accent); position: relative; }
.tooltip:hover::after { 
    content: attr(data-tooltip); 
    position: absolute; 
    bottom: 130%; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #333; 
    padding: 10px; 
    border-radius: 6px; 
    width: 220px; 
    display: block; 
    z-index: 1001; 
}