/* Algemene reset voor consistente weergave */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Zorgt dat footer niet loskomt van de onderkant */
html, body {
    height: 100%;
}

/* Basis body styling + flex layout */
body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
}

/* -------- NAVIGATIE -------- */
.navbar {
    background-color: #1c1c1c; /* Donker, professioneel */
}

/* Navigatie links */
.navbar .nav-link {
    color: #f5f5f5;
    margin-left: 10px;
}

/* Hover effect op navigatie */
.navbar .nav-link:hover {
    color: #E5C7A1; 
}

/* Actieve pagina */
.navbar .nav-link.active {
    color: #E5C7A1;
    font-weight: bold;
}


main {
    flex: 1; /* geen gap onder footer */
    padding: 20px;
}

h1, h2 {
    margin-bottom: 10px;
}

h1 {
    text-align: center;
}


footer {
    background-color: #1c1c1c;
    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Social icon */
ion-icon {
    font-size: 40px;
    color: #E5C7A1;
}

/* Hover effect op icon */
ion-icon:hover {
    color: #ffffff;
}

/* -------- RESPONSIVE -------- */
@media screen and (min-width: 768px) {
    main {
        padding: 40px;
    }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75); /* zwarte balk */
    padding: 15px;
    text-align: center;
}

.carousel-caption h5,
.carousel-caption p {
    color: #ffffff;
    margin: 0;
}
.profile-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


