:root {
    --zwart: black;
    --blauw: #283544;
    --grijs: #B9C3CD;
    --wit: #F4FAFF;
    --roos: #EF798A;
    --lichtBlauw: #447fad;
}

html {
    scroll-behavior: smooth !important;
    overscroll-behavior-block: contain;
}

body {
    background-image: url("../img/background-reduced.jpg") !important;
    background-color: #050603;
    background-position: 0% 40% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    backdrop-filter: brightness(0.8) !important;
    font-family: 'Prompt', sans-serif;
    color: var(--wit);
    cursor: none;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.hoverEffect {
    cursor: none;
}

.cursor {
    width: 60px;
    height: 60px;
    border: 2px solid var(--wit);
    border-radius: 50% !important;
    position: fixed;
    top: -30px;
    left: -30px;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    box-shadow: 0 0 10px 5px rgba(44, 44, 44, 0.863);
    transition: width 0.4s, height 0.4s, left 0.4s, top 0.4s;
    /*display: none;*/
    visibility: hidden;
    
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--wit);
    border: 1px solid var(--grijs);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--zwart);
}

@media only screen and (max-width: 991px) {
    .cursor {
        display: none !important;
    }
}

@media (max-width: 991px) {
    body {
        background-size: 200% !important;
        background-position: center center !important;
        backdrop-filter: brightness(0.6) !important;
        background-color: #05060371 !important;
    }

    .cursor {
        display: none;
    }

    .top-50 {
        margin-top: -50px !important;
    }
}

@media (max-width: 991px) {
    .sidebar {
        background-color: #0e0f0a71;
        background-blend-mode: screen;
        backdrop-filter: blur(5px);
        align-items: flex-end !important;
        border-left: 1px solid var(--wit) !important;
        width: 40% !important;
    }
    
    .offcanvas-end .offcanvas-header .btn-close {
        order: 2;
    }

    .offcanvas-end .offcanvas-header .btn-close.ms-auto {
        order: 1;
    }

    .offcanvas-end .offcanvas-body .navbar-nav {
        text-align: right;
    }

    .titlebox {
        width: 100%;
        margin-left: 0px !important;
        margin-right: 0px !important;
        margin-top: 2vh !important;
        text-align: center;
    }

    .big {
        font-size: 2em !important;
    }

    .thin {
        font-size: 1.3em !important;
    }

    .col-12 {
        text-align: center !important;
    }

    .navbar {
        width: 100%;
    }

    .cursor {
        display: none;
    }
}

@media (max-width: 768px) {
    .big {
        font-size: 1.6em !important;
    }

    .thin {
        font-size: 1.1em !important;
    }
}

.wit {
    color: var(--wit);
}

.title {
    font-size: 3em;
}

.thin {
    font-size: 1.2em;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
}

.big {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 4em;
}

.op70 {
    opacity: 0.7;
}


/*navbar*/
.offcanvas-transition {
    transition: transform 0.3s ease-in-out;
}

.navbarWrapper {
    position: absolute;
    padding-left: 3px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.navbar-nav .nav-link {
    cursor: none;
    color: var(--wit);
}

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

.navbar-nav .nav-link.active {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-color: var(--grijs);
}

.lichtBlauw {
    background-color: var(--lichtBlauw);
}
.lichtBlauw:hover {
    background-color: #39729e;
}

/* Intro styles */
.intro {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #0e0f0a;
    backdrop-filter: invert(5%) blur(5px);
    transition: 1s;
}

.logo-header {
    position: absolute;
    z-index: 100;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--wit);
}

.logo {
    position: relative;
    z-index: 100;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
}

.logo.active {
    z-index: 100;
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logo.fade {
    bottom: 150px;
    z-index: 100;
    opacity: 0;
    transition: ease-in-out 0.5s;
}