.instagram {
    height: 30px;
    display: flex;
    align-items:center;
    text-decoration: none; /* Optional: Remove link underline */
}

.instagramlogo {
    height: 1.2vw;
    transition: filter 0.3s ease; /* Smooth hover effect */
}

/* Apply the hover effect to the image */
.instagram:hover .instagramlogo {
    filter: sepia(1) saturate(500%) hue-rotate(-50deg); /* Tint to #dc9e0e */
}

#wrapper{
    position:relative;
    margin:0;
    width:100vw;
    height:100vh;
    background-image:url(./background.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    overflow-y: visible;
    overflow-x: hidden;
    font-family: Poppins;
    overflow:hidden;
}
body {
    margin:0;
}

.invisible-scrollbar::-webkit-scrollbar {
    display: none;
  }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 110px;
    overflow: hidden;
    background-color: transparent;
    padding: 35px 10px 35px 0px;
    letter-spacing: 0.10em;
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.logo {
    display:flex;
    position:fixed;
    top: 100px;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
    height:15vw;
    min-height: 75px;
    max-height: 170px;
    user-select:none;
}

.nav-items {
    position:fixed;
    font-family: Poppins;
    font-size: 1.2vw;
    font-weight: 300;
    display: flex;
    justify-content:center;
    align-items:center;
    gap: 40px;
    left:50%;
    top:30px;
    transform: translateX(12vw);
    height:15vw;
    min-height: 90px;
    max-height: 150px;
}

.nav-items a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #ffc600;
}
 /* Hamburger icon styling */
 .burger-icon {
    position:fixed;
    top:94px;
    right:94px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    display:none;
}

.burger-icon div {
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
}

.menuOverlay ~ .navbar .burger-icon div{
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
}

.menuOverlay{
    width:100vw;
    height:100vh;
    background:rgb(29, 29, 29);
    opacity: 0;
}

.menuList{
    opacity:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition: all 0.2s linear;
    gap: 45px;
    width: 100%;
    height: 100%;
}
.menuList a{
    color: white;
    text-decoration:none;
    font-family: Poppins;
    font-size:6vw;
}
.menuList a:hover{
    color: #ffc600;
}
.menuList .instagram{
    height: 75px;
}
.menuList .instagramlogo{
    height: 6vw;
}

.bar{
            border-radius: 5px;
            transition: all 0.3s ease;
}
/* Add "active" class when clicked to animate into "X" */
.burger-icon.active .bar:nth-child(1) {
    transition: all 0.2s linear;
    transform: rotate(45deg) translateY(13px);
}

.burger-icon.active .bar:nth-child(2) {
    transition: all 0.2s linear;
    opacity: 0;
}

.burger-icon.active .bar:nth-child(3) {
    transition: all 0.2s linear;
    transform: rotate(-45deg) translateY(-12px);
}

.content{
    position: absolute;
    width: 80vw;
    height: fit-content;
    top: 250px; /* Position from the top */
    left: 50%; /* Position from the left */
    transform: translate(-50%);
    display:flex;
    flex-direction:column;
    justify-content:start;
    align-items:center;
    
    width: 100vw;
        height: calc(100vh - 250px);
        overflow-y: visible;
        overflow-x: hidden;
        left: 0;
        transform: none;
        padding: 0;
}

.slogan-title{
    text-align:center;
    font-size:46px;
    font-weight:100;
    color:white;
    padding:40px;
}

.slogan-text{
    max-width:800px;
    text-align:center;
    font-size:20px;
    font-weight:300;
    color:white;
    padding: 0 40px 40px 40px;
}

.maak-afspraak{
    display:flex;
    justify-content:center;
    align-items:center;
    width:300px;
    height:60px;
    min-height:60px;
    background: #dc9e0e;
    color:white;
    font-size:22px!important;
    user-select:none;
    cursor: pointer;
    text-decoration:none;
    transition: all 0.3s ease;
}
.maak-afspraak:hover{
    background: white;
    color: #dc9e0e;
}
.navbar.blur{
    filter:blur(10px);
}

.tabel-wrapper{
    display:flex;
    flex-direction:column;
    width:90vw;
    max-width:700px;
    height:50vh;
    color:white;
    font-size:18px;
    text-align:left;
    font-weight:300;
    line-height: 45px;
    gap:5px;
}
.unit{
    display:flex;
    flex-direction:row;
    width:90vw;
    max-width:900px;
}
.unit-title{
    background:rgba(0, 0, 0, 0.508);
    width:50%;
    padding:5px;
    padding-left:30px;
}
.unit-text{
    text-align:center;
    align-items:center;
    justify-content:center;
    background:rgba(0, 0, 0, 0.508);
    width:200px;
    padding:5px;

}

.contact-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:600px;
    color:white;
    gap:5px;
}
.contact-icon a{
    color:white;
    font-size:24px;
}
.contact-icon .instagramlogo{
    height:25px;
}
.contact-icon a:hover{
    color:#dc9e0e;
}
.contact-text a{
color:white;
text-decoration:none;
}
.contact-text a:hover{
    color:#dc9e0e;
    text-decoration:none;
    }
    
.maak-afspraak.nav{
    display:none;
    }
@media (max-width: 1200px) {
    .maak-afspraak.nav{
        display:flex;
        position:fixed;
    top:83px;
    left:70px;
    width:40px;
    min-height:unset;
    height:40px;
    font-size:17px;
    }
    .nav-items{
        display:none;
    }
    .burger-icon{
        display:flex;
    }
    .menuOverlay.active ~ .navbar .burger-icon div{
        width: 30px;
        height: 4px;
        background-color: white;
    }
    .menuOverlay.active ~ .navbar .logo{
        display:none;
    }
    .menuOverlay.active ~ .navbar .maak-afspraak.nav{
        display:none;
    }


    .menuOverlay.active{
        position:absolute;
        display:flex;
        opacity:1;
        width:100vw;
        height:100vh;
        z-index:1;
    }
    .menuOverlay.active .menuList{
        opacity:1;
        transition: opacity 0.2s linear;
    }
    .content{
        width:100%;
        padding-left:20px;
        padding-right:20px;
        overflow: scroll;
        top:150px;

        width: 100vw;
        height: calc(100vh - 150px);
        transform: none;
        padding: 0;
    }
    .navbar{
        height: 50px;
    }
}

@media (max-width: 500px) {
    .maak-afspraak.nav{
        display:flex;
        position:fixed;
    top:30px;
    left:40px;
    width:40px;
    min-height:unset;
    height:40px;
    font-size:16px!important;
    }
    .slogan-title{
        padding:10px 11px;
        font-size:7vw;
    }
    .slogan-text{
        font-size:4vw;
        padding:10px 10px;
    }
    .burger-icon {
        top:40px;
        right:40px;
    }
    .maak-afspraak{
        width:80vw;
        font-size:5vw!important;
    }
    .content{
        top:100px;
        height: calc(100vh - 99px);
    }
    .logo{
        top:50px;
    }
}