/*
Theme Name: VBV Professioneel Thema
Description: Gitzwart/Hagelwit thema met besloten ledenomgeving.
Version: 1.1
Author: Gerth Peters
*/

/* 1. Basis instellingen */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 2. De Menubalk (Zwart) */
.vbv-nav-container {
    background-color: #000000;
    color: #ffffff;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.vbv-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vbv-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    margin-right: 30px;
}

/* 3. Hoofdmenu */
.vbv-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.vbv-main-menu li {
    position: relative; /* Nodig voor de submappen */
}

.vbv-main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 0;
    display: block;
}

.vbv-main-menu a:hover {
    color: #cccccc;
}

/* 4. Submappen (Dropdowns) */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff; /* Witte achtergrond voor submappen */
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    display: none; /* Standaard onzichtbaar */
}

.sub-menu li a {
    color: #000000 !important; /* Zwarte letters in submappen */
    padding: 10px 20px;
    text-transform: none;
    font-weight: normal;
    display: block;
}

.sub-menu li a:hover {
    background-color: #eeeeee;
}

/* Toon submap bij overvliegen met muis */
.has-sub:hover > .sub-menu {
    display: block;
}

/* 5. Inlog/Uitlog knop */
.auth-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s;
}

.auth-btn:hover {
    background-color: #dddddd;
}

.user-name {
    margin-right: 15px;
    font-size: 13px;
    color: #aaa;
}