/* Contactblok */
.contact-blok {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background: #2b2b2b;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    animation: fadeIn 0.8s ease-in-out; /* fade-in effect */
}
.contact-blok h2 {
    margin-top: 0;
    color: #fff;
}
.contact-blok p {
    font-size: 14px;
    color: #ddd;
}

/* Contacttabel */
.contact-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    border-bottom: 1px solid #444; /* scheidingslijn */
    padding-bottom: 10px;
}
.contact-tabel td {
    padding: 6px 8px;
    vertical-align: top;
    color: #ddd;
}
.contact-tabel td:first-child {
    font-weight: bold;
    white-space: nowrap;
}

/* Formulier */
.contact-blok form {
    display: flex;
    gap: 8px;
}
.contact-blok input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    box-sizing: border-box;
}
.contact-blok input[type="email"]:focus {
    outline: none;
    border-color: #0078d7;
    box-shadow: 0 0 5px rgba(0,120,215,0.5); /* glow bij focus */
}

/* Knop */
.contact-blok button {
    background: #0078d7;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease; /* animatie */
}
.contact-blok button:hover {
    background: #005a9e;
    transform: translateY(-2px); /* subtiele hoverbeweging */
}

/* Animatie */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}