body.no-scroll {
    overflow: hidden;
}

.hamburger-button {
    display: none;
    width: 60px;
    height: 40px;
    padding-bottom: 10px;
    padding-right: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger-menu {
    position: fixed;
    display: none;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    padding: 1px;
    box-sizing: border-box;
}

.hamburger-links {
    position: fixed;
    right: 0;
    overflow: scroll;
    margin-right: 10px;
    margin-top: 1px;
    max-width: 80%;
    width: 80%;
    height: 60%;
    background: var(--royal-blue);
    border: 2px solid var(--royal-blue);
    border-radius: 8px;
    z-index: 1000;
}
@media (max-width: 1024px) {
    .mainview p {
        font-size: 24px;
        font-family: URW Gothic L;
    }

    .mainview h2 {
        font-size: 18px;
        color: var(--royal-blue);
        font-weight: bold;
    }
    .hamburger-button {
        display: flex;

    }
    .navbar {
        align-items: end;
    }
    .site-subtitle {
        font-size: 17px;
        width: 80%;
    }
    .circle,
    .haaknaald,
    .main-menu,
    .wolletje,
    .user-button,
    .shoppingcart{
        display: none;
    }
    .dropdown-link,
    .main-menu-link {
        display: flex; /* Allow boxes to sit next to each other */
        background: white;
        width: 100%; /* Adjust width as needed */
        font-size: 20px;
        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: 8px;
    }
}

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