/* 
   Overschrijf de donkere filter van Ananke.
   Standaard is het rgba(0, 0, 0, 0.6) -> 60% zwart.
   Wij maken er 0.3 (30%) of 0.2 (20%) van.
*/

.bg-black-60,
.bg-black-50,
.bg-black-40,
.bg-black {
    background-color: rgba(94, 255, 188, 0.1) !important;
}

/* Scoped text shadow: Hero section & Navigation only */
.cover h1,
.cover h2,
.cover .lh-title,
header .lh-copy,
nav,
nav a,
#current-lang-label,
header .lh-title {
    text-shadow: 2px 1px 1px rgba(0, 0, 0, 1);
}

/* Force 100% white text for specific elements in the header, excluding the main page title div */
.cover h1, /* The h1 title on the homepage */
.cover h2, /* The h2 description on the homepage */
.cover nav a, /* Navigation links within the cover */
.cover #current-lang-label, /* Language selector label */
.cover #lang-dropdown-toggle, /* The button wrapping the language selector label */
.cover .white-80 { /* The description div for newsletter articles */
    color: white !important;
}

/* Zorg ervoor dat de items in de taal-dropdown zwart zijn */
#lang-dropdown-menu .lang-opt {
    color: black !important;
}