/* Algemene styling */
body {
    background-color: #121212;
    color: #f1f1f1;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

a {
    color: #0d6efd;
}
a:hover {
    color: #66b2ff;
    text-decoration: none;
}

/* Navigatie */
.navbar {
    background-color: #1e1e1e;
}
.navbar .nav-link {
    color: #ccc;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

/* Header */
header {
    background: linear-gradient(to right, #0d6efd 0%, #121212 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
header img {
    max-height: 140px;
    transition: transform 0.4s ease;
}
header img:hover {
    transform: scale(1.05);
}
header h1 {
    font-size: 3.2rem;
    margin-top: 20px;
}
header p {
    font-size: 1.25rem;
    color: #ccc;
}

/* Knoppen */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 1.1rem;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}
.btn-outline-light:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Knoppen */
.btn-light {
    background-color: #e5e8ec;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 1.1rem;
}
.btn-light:hover {
    background-color: #eef0f3;
}
.btn-outline-light:hover {
    background-color: #f1f3f7;
    color: #fff;
}

/* Knoppen */
.btn-danger {
    background-color: #be0d0d;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 1.1rem;
}
.btn-danger:hover {
    background-color: #b31111;
}
.btn-outline-light:hover {
    background-color: #c21717;
    color: #fff;
}

/* Formulieren */
.form-control {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
}
.form-control::placeholder {
    color: #bbb;
}
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13,110,253,0.5);
}

/* Cards en secties */
.card, .bg-dark {
    background-color: #1e1e1e !important;
    border: 1px solid #333;
}
.card-title {
    font-size: 1.25rem;
}
section {
    padding-top: 20px;
}
section h2 {
    font-size: 2rem;
}

/* Afbeeldingen */
img.img-fluid {
    border: 1px solid #333;
}

/* Footer */
footer {
    background-color: #1e1e1e;
    color: #888;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}
footer a {
    color: #bbb;
}
footer a:hover {
    color: #fff;
}
