body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    color: #fff;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 1s;
}

.intro h1 {
    font-size: 3rem;
    animation: slideIn 1s;
}

.intro p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta {
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #feb47b;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 150px;
    border-radius: 50%;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.item:hover img {
    transform: scale(1.05);
}

.diensten-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.dienst {
    padding: 20px;
    border-radius: 10px;
    background-color: #333;
    transition: transform 0.3s;
}

.dienst:hover {
    transform: scale(1.05);
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial {
    min-width: 300px;
    margin: 0 10px;
    opacity: 0.8;
    transition: opacity 0.5s;
}

#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contactForm input, #contactForm textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

#contactForm button {
    padding: 10px 20px;
    background-color: #feb47b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.knop1 {
    background-color: black;
    position: relative;
    width: 100px;
    height: 100px;
}
