
/* Algemene stijl */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #007BFF;
}

p {
    text-align: center;
}

/* Navigatiebalk */
.navbar {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar .logo a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

.navbar .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.navbar-links {
    display: flex;
    gap: 15px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.navbar-links a:hover {
    text-decoration: underline;
}

/* Mobielvriendelijke navigatie */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0056b3;
        padding: 10px 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links a {
        padding: 10px;
        text-align: center;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar-links a:first-child {
        border-top: none;
    }
}

/* Productweergave */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.product {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: calc(100% - 40px);
    max-width: 300px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product h2 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.product p {
    font-size: 14px;
    color: #666;
}

.product .price {
    font-size: 16px;
    color: #007BFF;
    margin: 10px 0;
}

.product .btn {
    display: inline-block;
    background: #007BFF;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
}

.product .btn:hover {
    background: #0056b3;
}
