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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Container & Panelen */
.container {
    width: 600%; 
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
}

.panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    position: relative;
    border-right: 1px solid #222;
}

/* Moderne Split Layout */
.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1300px;
    gap: 60px;
    align-items: center;
}

.text-side {
    flex: 1;
    text-align: left;
}

.image-side {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Typografie */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    color: #4facfe;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Icon Lijsten */
.icon-list {
    list-style: none;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.icon-list li:hover {
    background: rgba(79, 172, 254, 0.1);
    transform: translateX(10px);
    border-color: #4facfe;
}

.icon-list i {
    color: #4facfe;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

/* Foto Styling */
.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}

.project-img:hover {
    border-color: #4facfe;
    transform: scale(1.03);
}

.img-large {
    grid-column: span 2;
    height: 300px;
}

/* Specifieke Slide Kleuren */
.intro-slide { background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%); flex-direction: column; text-align: center; }
.web-slide { background: #050505; }
.nova-slide { background: #080808; }
.vr-slide { background: #050505; }
.game-slide { background: #080808; }

/* Scroll Hint Animatie */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 0.8rem;
    color: #555;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
}