body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.Bovenste-balk{
    background-color: #1b1c1b;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 75px;
    border: 1px solid black;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    overflow: visible;
    width: 100%; 
    box-sizing: border-box;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
}

.dropdown {
    position: relative;
    z-index: 2;
}

.dropdown button, .sub-dropdown-btn {
    background-color: #1b1c1b;
    color: rgb(8, 8, 8);
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown button i {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align:center;
}

.dropdown-content {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #272121;
    box-shadow: 2px 0 5px 0px rgba(0,0,0,0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 3;
    overflow-y: auto;
}

.dropdown-content .close-btn {
    display: block;
    background-color: #272121; 
    z-index: 3;
    padding: 16px;
    color: #dddddd;
    text-decoration: none;
}

.dropdown-content a {
    display: block;
    padding: 16px;
    color: #dddddd;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #585858;
}

.dropdown-content.show {
    transform: translateX(300px);
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.auth-buttons {
    display: flex;
    margin-left: auto;
}

.auth-buttons .inloggen, .auth-buttons .registreren {
    display: flex;
    justify-content: flex-end;
    margin-left: 15px; 
    gap: 10px;
}

.auth-buttons a {
    text-decoration: none;
    font-family: Helvetica, sans-serif;
    color: #dbbe7a;
    padding: 10px 15px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    background-color: #000000;
}

.auth-buttons a:hover {
    background-color: #373737;
}

.Onderste-balk {
    display: flex;
    height: 240px;
    background-color: #262626;
    position: relative;
    bottom: 0; 
    border: 1px solid black;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Twee kolommen van gelijke breedte */
    gap: 40px; /* Ruimte tussen de twee kolommen */
    padding: 20px;
}
 
.Onderste-balk a {
    text-decoration: none;
    font-size: 14px;
    color: #dbdbdb;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.Onderste-balk a:hover {
    text-decoration: underline;
}

.Onderste-balk-boven {
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: center;
    background-color: #1c1c1c;
    position: relative;
    bottom: 0; 
    border: 1px solid black;
    padding: 0 20px;
    width: 100%;
    color: #b7b6b6;
}


/* Subdropdown standaard verborgen */
.sub-dropdown-content {
    display: none;
    background-color: #272121;
    padding: 10px;
}

/* Toon de subdropdown wanneer de "show" class wordt toegevoegd */
.sub-dropdown-content.show {
    display: block;
}

/* Toon hoofd dropdown wanneer "show" class wordt toegevoegd */
.dropdown-content.show {
    display: block;
}

/* Styling voor de subdropdownknop */
.sub-dropdown-btn {
    display: flex !important;
    justify-content: left !important;
    background-color: #272121 !important;
    color: #dddddd !important; 
    border: none !important;
    cursor: pointer !important;
    border-bottom: 1px solid #ddd !important;
    width: 100% !important; 
    /*padding: 10px !important;
    /* width: 100% !important;  */
}

.sub-dropdown-btn:hover {
    background-color: #585858 !important;
}

.sub-dropdown-btn .arrow {
    transition: transform 0.2s;
}

.sub-dropdown-btn.rotate .arrow {
    transform: rotate(90deg);
}

.rij_links {
    display: flex;
    gap: 10px; /* Ruimte tussen links in een kolom */
    display: grid;
    grid-template-columns: repeat(2, auto); /* Twee kolommen */
    column-gap: 60px; /* Ruimte tussen de kolommen */
    row-gap: 5px;
}

.rij_links a {
    color: #ffffff; /* Tekstkleur */
    text-decoration: none; /* Verwijder onderstreping */
    font-size: 16px; /* Lettergrootte */
    padding: 5px; /* Ruimte rondom de tekst */
    transition: color 0.3s ease, transform 0.2s ease;
}

.rij_links a:hover {
    color: #dbbe7a; /* Goudachtige hoverkleur */
    transform: scale(1.05); /* Lichte vergroting bij hover */
}