body {
    background-color: #0a2540 !important; /* of #0a2540 voor donkerblauw */
    min-height: 100%;
    margin: 0;
    padding: 0;
}


.carousel {
    border-radius: 20px;
    overflow: hidden;
}

.carousel img {
    filter: brightness(85%);
}

.carousel-caption h5,
.carousel-caption p {
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}


.carousel img {
    filter: brightness(90%);
    transition: transform 0.6s ease;
}

.carousel-item img:hover {
    transform: scale(1.05);
}


/* Navbar achtergrondkleur */
.navbar-custom {
    background-color: #0a2540;
}

/* Logo en links wit */
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff;
}

/* Social buttons wit + hover */
.btn-social {
    background-color: #fff; /* witte achtergrond */
    color: #0a2540; /* icoon kleur passend bij navbar */
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background-color: #0a2540;
    color: #fff;
}

#contact .row {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

#contact img {
    transition: transform 0.5s ease;
}

#contact img:hover {
    transform: scale(1.05);
}

#contact form {
    background-color: #fff;
}

#contact .btn-primary {
    background-color: #0a2540;
    border: none;
    transition: background-color 0.3s ease;
}

#contact .btn-primary:hover {
    background-color: #0a2540;
}

#reviews .carousel-item {
    transition: transform 0.8s ease, opacity 0.8s ease;
}

#reviews .shadow {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

#prijzen .card {
    background-color: #f4f4f4;
    color: #333;
    border-radius: 15px;
    line-height: 1.7;
}

#prijzen h2,
#prijzen h4 {
    color: #0a2540; /* donkerblauw accentkleur */
}



