/* Default header styling */
header {
    padding: 0;
}

/* Color variants */
header.header-green {
    background: var(--groen);
}

header.header-grey {
    background: var(--grijs);
}

header.header-yellow {
    background: var(--geel);
}

header.header-blue {
    background: var(--blauw);
}

nav {
    display: flex;
    justify-content: center;  
    align-items: center;
    gap: 40px;                
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
}

/* Logo styling - handles .Logo and .logo */
.Logo,
.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Support for nav ul structure (AgendaBeheer variant) */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
}
.logo-img {
  height: 80px;
  object-fit: contain;
}
