/* Pagina-achtergrond + Overlay = */
body {
    background-image: url('Images/websiteachtergrond.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    margin: 0;  
    box-sizing: content-box; 
}
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}
/**/

/* Navbar CSS */
.navbar {
    background-color: rgb(0 0 0);
    box-shadow: 0 4px 5px #DFC76D;
    position: relative;
    min-height: 100px;
    padding: 10px 0;
}
.contact .btn, .footer .btn {
    border-color: #DFC76D;
}
.btn:hover {
    background-color: #DFC76D!important;
    border-color: #DFC76D!important;
}
.navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
}
.navbar .d-flex {
    display: flex;
    align-items: center; /* Centreer de buttons verticaal */
}
/**/

/* Container CSS */
.custom-container {
    border: 1px solid #000; 
    background-color: #000;
    border-radius: 15px
}
.custom-container h1, a, p {
    color: white !important;
}
.custom-container h1 {
        justify-content: center;
        display: flex;
        margin-bottom: 2rem;
        margin-top: 1rem;
        font-size: 2rem;
}
.custom-container a {
    display: flex;
    margin-bottom: 2rem;
}

.custom-container .btn {
    display: inline-block;
    margin-bottom: 2rem;
}

.contact p {
    margin-bottom: 0rem!important;
}
/**/

/* Margin navbar/containers */
.spacer {
    margin-top: 150px;
}
/**/
.footer {
    background-color: #000;
    padding: 20px 0;
    position: inherit;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

@media (min-width: 999px) {
    .footer {
        position: fixed; /* Voor grotere apparaten (laptops en desktops) */
        bottom: 0;
        left: 0;
        z-index: 1000;
    }
}

.footer .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.opening-hours {
    color: white;
    text-align: center;
    width: 100%;
}

.opening-hours-title {
    margin-bottom: 15px;
}

.opening-hours-block {
    margin-bottom: 20px;
    width: max-content;
}

.opening-hours-block p {
    margin-bottom: 0.3rem;
}

#copyright {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .mx-2 {
        margin-bottom: 10px!important; 
    }
    
.opening-hours-block {
    padding-left: 25%;
}
    }