/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 1.4rem;
    font-weight: bold;
}

/* MENU */
.menu {
    display: flex;
    gap: 24px;
    list-style: none;   /* puntje weg */
    padding: 0;
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu a:hover {
    color: #2563eb;
}

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

    .logo {
        display: none;
    }

    .navbar-container {
        justify-content: center;   /* Zorg dat in het  is midden */
    }

    .menu {
        gap: 16px;   /*Meer ruimte*/          
    }
}