/* Custom CSS */
/* Algemeen */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e7f5ff;
}


.carousel-image {
    max-height: 400px;
    height: 400px !important;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-image {
        max-height: 150px; /* kleinere hoogte op mobiel */
    }
}

@media (max-width: 480px) {
    .carousel-image {
        max-height: 150px; /* nog kleiner op kleine smartphones */
    }
}

.navbar-brand {
    padding: 15px 0.75rem;
    margin-left: 0; /* No margin for mobile */
}

.navbar-brand img {
    height: 80px; /* Smaller logo for mobile */
}

/* Desktop styles using media query */
@media (min-width: 992px) {
    .navbar-brand {/* Mobile-first styles */

        margin-left: 250px;
    }

    .navbar-brand img {
        height: 120px; /* Original logo size for desktop */
    }

}

/* --- Simplified Carousel Styles --- */
.carousel-item {
    transition: transform 1.5s ease-in-out;
}


.bg-light {
    background-color: #e7f5ff !important;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-link:hover {
    color: #FF0000 !important;
    transition: color 0.3s ease-in-out;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;

}

/* Knop animatie */
.animated-button {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}
.animated-button:active {
    transform: scale(0.95) translate(2px, 2px);
    box-shadow: 0 0 5px rgba(0,0,0,0.5) inset;
}