/* Jouw Kleuren */
:root {
    --primary-color: #0044cc; /* Pas aan naar exact jouw blauw */
    --accent-color: #ffcc00;  /* Voor buttons of accenten */
    --dark-bg: #1a1a2e;       /* Donkere achtergrond */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigatie */
.top-bar {
    background-color: var(--primary-color);
    font-size: 0.9rem;
}

.navbar-nav .nav-link {
    color: #333;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Knoppen */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #003399; /* Iets donkerder bij hover */
}

/* Footer links hover effect */
.hover-white:hover {
    color: #fff !important;
    padding-left: 5px;
    transition: all 0.2s;
}

/* DIENSTEN BLOKKEN OP HOME (Gelijke hoogte fix v2) */
.service-card {
    height: 100%; /* Zorg dat de kaart de volledige kolom vult */
    display: flex;
    flex-direction: column;
}

.service-card a:first-child {
    display: block; /* Zorgt dat de link de wrapper omvat */
}

.service-card-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #333;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card a:hover .service-card-img-wrapper img {
    transform: scale(1.05);
}

.service-card .card-body {
    flex-grow: 1; /* Deze is cruciaal: de body neemt alle resterende ruimte in beslag */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spreidt de inhoud verticaal */
}

.service-card .btn {
    margin-top: 1rem; /* Zorgt voor wat ruimte boven de knop */
}

/* FORCEER GELIJKE BREEDTE VOOR DIENST-KOLOMMEN */
.home-service-col {
    flex-basis: 33.3333%; /* Basis breedte */
    flex-grow: 0;         /* Niet meegroeien */
    flex-shrink: 1;       /* Wel krimpen indien nodig */
    max-width: 33.3333%;  /* Harde limiet */
}

/* INSTAGRAM FEED STYLING */
.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.instagram-post .instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 68, 204, 0.7); /* Jouw blauwe kleur met transparantie */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.instagram-post:hover img {
    transform: scale(1.1);
}
.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.addon-item { cursor: help; } /* Verandert de muis in een vraagteken */