/* Logo */
.logo a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:black;
    font-weight:700;
    font-size:20px;
}

.logo-icon{
    width:25px !important;
    height:25px !important;
    object-fit:contain;
}

/* Navbar container */
.navbar{
    border-bottom:1px solid #eee;
    padding:20px 0;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Nav links */
.main-nav a{
    margin-left:25px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.2s;
}

.main-nav a:hover{
    color:black;
}

/* Contact knop */
.btn-nav{
    padding:10px 18px;
    background:black;
    color:white;
    border-radius:8px;
}

/* Hamburger menu – mobiel */
.hamburger{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:black;
    border-radius:2px;
}

/* Responsive: mobiel */
@media (max-width:768px){
    .main-nav{
        position:fixed;
        top:70px;
        right:-100%;
        width:200px;
        height:calc(100% - 70px);
        background:white;
        flex-direction:column;
        align-items:start;
        padding:20px;
        gap:20px;
        transition:0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    }

    .main-nav.show{
        right:0;
    }

    .hamburger{
        display:flex;
    }
}