/* Basisstijl */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* Smooth scroll effect */
}

/* Hero Sectie */
#hero {
    background: linear-gradient(135deg, #D8BFD8, #BA55D3); /* Lilac glans effect */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content img {
    width: 120px;
    border-radius: 50%;
}

.hero-content h1 {
    margin: 10px 0;
    font-size: 2.5em;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ffccff;
}

/* Fade-in effect voor scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Actieve fade-in */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Projecten */
#projects, #about, #contact {
    padding: 50px 20px;
}

.projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project-card {
    background: #1E1E1E;
    padding: 20px;
    margin: 10px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    border-radius: 5px;
}

.project-card .btn {
    display: block;
    margin: 10px auto;
}

/* Contact */
#contact {
    background: #6A5ACD;
    padding: 40px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

form input, form textarea {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    width: 100%;
}

form textarea {
    height: 100px;
}
