/* Hide the hamburger menu by default on larger screens */
.hamburger-menu {
    display: none; /* Hidden by default */
    width: 70px;
    height: 40px;
    padding-right: 10px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger-links {
    display: none;
    position: fixed;
    right: 0;
    margin-top: 8px;
    max-width: 100%;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}
@media (max-width: 1024px) {
    .mainview p {
        font-size: 24px;
        font-family: URW Gothic L;
    }

    .mainview h2 {
        font-size: 28px;
        color: var(--royal-blue);
        font-weight: bold;
    }
    .hamburger-menu {
        display: flex;
    }
    .circle,
    .haaknaald,
    .main-menu,
    .wolletje,
    .user-button,
    .shoppingcart{
        display: none;
    }
    .main-menu-link {
        display: flex; /* Allow boxes to sit next to each other */
        /*background-color: var(--housestyle-purple);*/
        width: 100%; /* Adjust width as needed */
        font-size: 80px;
        font-weight:bold;
        text-decoration: none;
        align-content: center;
        justify-content: center;
        white-space: nowrap;
        padding: 5px;
        color: var(--royal-blue);
        border: 1px solid var(--royal-blue);
        border-radius: 4px;
    }
}

.line {
    width: 100%;
    height: 8px;
    background-color: #000;
    transition: all 0.3s ease;
}
