body {
    width: 100vw;
    padding-top: 80px;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #222;
}
body.dark-mode .highlight-section,
body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode header,
body.dark-mode nav,
body.dark-mode .news-preview,
body.dark-mode .highlight,
body.dark-mode .team-card,
body.dark-mode footer {
  background-color: #1e1e1e;
  color: #f0f0f0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode span,
body.dark-mode h3,
body.dark-mode a {
  color: #f0f0f0 !important;
}

body.dark-mode a {
  color: #a0d911;
}
/* DARK MODE SUPPORT */
.dark-mode .calendar-section p {
    color: #ccc;
}

.dark-mode .calendar-table tr:nth-child(even) {
    background-color: #111; /* Donkere achtergrond voor even rijen */
}

.dark-mode .calendar-table tr:nth-child(odd) {
    background-color: #000; /* Nog donkerder voor oneven rijen (optioneel) */
}

.dark-mode .calendar-table tr:hover {
    background-color: rgba(161, 233, 0, 0.1); /* Lichtgroene transparante hover over donker */
}

.dark-mode .calendar-table th {
    background-color: #a1e900;
    color: #000; /* Zwarte tekst op de groene header, voor contrast */
}

.dark-mode .calendar-table td {
    color: #eee; /* Lichte tekst in dark mode */
}

header {
    overflow: visible;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Zorg dat het boven alles staat */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* optioneel, voor een mooie schaduw */
    background-color: #fff;
    border-bottom: 4px solid #b5ff00;
    padding: 10px 0px;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-mask-wrapper {

    
  position: relative;
  width: 100vw;      /* Full viewport width */
  left: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;  /* In case children spill out */

}

.video-mask-wrapper video {
    height: 100%;
    width: 100vw;
    object-fit: cover;
    overflow: hidden;

    /* mask settings */
    -webkit-mask-image: url('../Images/MRTnoBG.png');
    -webkit-mask-size: 70%, auto;
    mask-image: url('../Images/MRTnoBG.png');
    mask-size: 85%, auto;
    mask-position: 20% 34%;
    -webkit-mask-position: 20% 34%;
    mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
}

.mask-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    background-color: white;
    pointer-events: none;
}

.text-video-mask {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.text-video-mask video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask: url(#mask-text);
    -webkit-mask: url(#mask-text);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.text-background {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(4, auto);
    /* twee kolommen */
    gap: 1vw 4vw;
    /* verticale en horizontale ruimte */
    align-content: center;
    justify-content: start;
    opacity: 0.05;
    font-size: 3vw;
    font-weight: 900;
    color: #323232;
    user-select: none;
    padding-left: 5vw;
    line-height: 1.1;
    z-index: 3;
}



.text-background span {
    margin: 0 1vw;
    transform: rotate(-15deg);
    display: inline-block;
    line-height: 1;
}

svg {
    width: 100%;
    height: auto;
    display: block;
    top: 0;
    left: 0;
    z-index: 10;
    /* hoger dan andere lagen */
    pointer-events: none;
    /* zodat het geen klikken blokkeert */
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #a1e900;
}

.logo img {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 15px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #a1e900;
}

/* NIEUWS */
.news-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.news-section h2 {
    font-size: 2rem;
    color: #a1e900;
    margin-bottom: 20px;
}

.news-item {
    text-align: left;
    background: #f6f6f6;
    padding: 20px;
    border-left: 6px solid #a1e900;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-item h3 {
    margin-top: 0;
    color: #333;
}

.news-item p {
    color: #555;
}

/* PARTNERS */
.partners-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partners-section h2 {
    font-size: 2rem;
    color: #a1e900;
    margin-bottom: 30px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-grid img {
    width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-grid img:hover {
    filter: none;
}

.intro {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f6f6f6;
    border-top: 2px solid #a1e900;
}

.contact-section {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1 {
    color: #a1e900;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #a1e900;
    border-radius: 10px;
    outline: none;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8ed400;
    box-shadow: 0 0 5px rgba(161, 233, 0, 0.6);
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    padding: 14px;
    font-size: 1.1rem;
    background-color: #a1e900;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #8ed400;
}

.team-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-section h1 {
    font-size: 2.5rem;
    color: #a1e900;
    margin-bottom: 10px;
}

.team-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: #f9f9f9;
    border: 2px solid #a1e900;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-card h3 {
    margin: 0;
    color: #222;
}

.team-card p {
    margin: 5px 0 0;
    color: #666;
}

.calendar-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.calendar-section h1 {
    font-size: 2.5rem;
    color: #a1e900;
    margin-bottom: 10px;
}

.calendar-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.calendar-table th,
.calendar-table td {
    border: 1px solid #a1e900;
    padding: 12px 16px;
}

.calendar-table th {
    background-color: #a1e900;
    color: white;
    text-transform: uppercase;
}

.calendar-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.calendar-table tr:hover {
    background-color: #e8ffcc;
}

.gallery-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-section h1 {
    font-size: 2.5rem;
    color: #a1e900;
    margin-bottom: 10px;
}

.gallery-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #a1e900;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


.cta-button {
    background-color: #b5ff00;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background-color: #a1e900;
    transform: scale(1.05);
}

.highlight-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 40px 20px;
}

.highlight {
    max-width: 400px;
    margin: 20px;
    background: white;
    border-left: 6px solid #a1e900;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-preview {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.news-preview h2 {
    font-size: 2rem;
    color: #a1e900;
}

.news-preview p {
    margin: 20px 0;
    font-size: 1.1rem;
    color: #444;
}

.button-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #a1e900;
    color: #a1e900;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.button-secondary:hover {
    background: #a1e900;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toggle switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Verberg standaard checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* De slider background */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: background-color 0.4s;
}

/* De ronde knop */
.slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.4s;
}

/* Checkbox checked - slider background groen */
.switch input:checked + .slider {
  background-color: #a1e900;
}

/* Checkbox checked - knop schuift naar rechts */
.switch input:checked + .slider::before {
  transform: translateX(24px);
}


/* ... al je andere CSS hierboven ... */