body {
    margin: 0;
    font-family: Arial, sans-serif;
}


/* Oranje bovenbalk */
.topbar {
    background-color: orange;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px;
    text-align: center;
}

/* Logo */
.topbar img {
    height: 60px;
    max-width: 100%;
}

/* Navigatie */
.navbar {
    background-color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 2px solid orange;
    position: relative;
}

.navbar a {
    padding: 15px 20px;
    text-decoration: none;
    color: orange;
    font-weight: bold;
}

/* Hover */
.navbar a:hover {
    background-color: orange;
    color: white;
}

/* Actief */
.navbar a.active {
    background-color: orange;
    color: white;
}

/* Hamburger knop - standaard verborgen op desktop */
.navbar a.icon {
    display: none;
}

/* Content */
.content {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

/* MOBIEL */
@media (max-width: 768px) {

    .topbar img {
        height: 45px;
    }

    /* Zorg dat navbar ruimte reserveert voor het icoontje */
    .navbar {
        min-height: 50px;
    }

    /* Verberg de gewone links, toon alleen de hamburger */
    .navbar a {
        display: none;
        text-align: left;
        border-top: 1px solid #eee;
        padding: 12px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Hamburger knop altijd zichtbaar */
    .navbar a.icon {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        font-size: 26px;
        line-height: 50px;
        padding: 0 18px;
        border-top: none;
        width: auto;
    }

    /* Als het menu open is, toon alle links */
    .navbar.responsive a {
        display: block;
    }

    /* Hamburger knop blijft zichtbaar ook als menu open is */
    .navbar.responsive a.icon {
        position: absolute;
    }

    .content {
        padding: 15px;
    }
}
