body {
    font-family: 'Roboto', sans-serif; /* Modern lettertype toegevoegd */
    line-height: 1.6; /* Betere leesbaarheid */
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #c4ff00; /* Exacte kleur van de lijnen in het logo */
}

html,
body {
    margin-top: 0 !important;
}

header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #06310f;
    background-image: url('HeaderBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #c4ff00; /* Exacte kleur van de lijnen in het logo */
    padding: 40px 20px; /* Meer ruimte voor een professionelere uitstraling */
    border-bottom: 2px solid #c4ff00; /* Toevoegen van een scheidingslijn */
    overflow: hidden;
    min-height: 280px;
}

.logo {
    max-width: 225px;
    margin-bottom: 10px; /* Ruimte tussen logo en tekst */
    position: relative;
    z-index: 1;
}

h1 {
    margin: 0;
    font-size: 2.5rem; /* Grotere tekst voor een professionelere uitstraling */
    text-align: center;
    position: relative;
    z-index: 1;
}

nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Meer ruimte tussen de navigatieknoppen */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #c4ff00; /* Exacte kleur van de lijnen in het logo */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px; /* Knoppen meer ruimte geven */
    border: 2px solid transparent; /* Voor een hover-effect */
    border-radius: 5px; /* Ronde hoeken voor een modernere look */
    transition: all 0.3s ease; /* Zachte overgang voor hover-effect */
}

nav ul li a:hover {
    background-color: #c4ff00; /* Achtergrondkleur bij hover */
    color: #000; /* Tekstkleur veranderen bij hover */
    border-color: #c4ff00; /* Randkleur bij hover */
}

nav ul li a[aria-current="page"] {
    background-color: #c4ff00;
    color: #000;
    border-color: #c4ff00;
}

.content {
    padding: 40px 20px 80px;
    max-width: 860px;
    margin: 0 auto 40px;
}

.home-content {
    display: grid;
    gap: 30px;
}

.home-hero {
    background: linear-gradient(180deg, #111 0%, #1e1e1e 100%);
    border: 1px solid #3a3a3a;
    border-left: 4px solid #c4ff00;
    border-radius: 10px;
    padding: 28px;
}

.home-hero h2 {
    margin-top: 0;
}

.home-cta {
    display: inline-block;
    margin-top: 6px;
    background-color: #c4ff00;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px solid #c4ff00;
    transition: all 0.2s ease;
}

.home-cta:hover {
    background-color: transparent;
    color: #c4ff00;
}

.home-cta-group {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.home-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: #222;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-card:hover {
    transform: translateY(-2px);
    border-color: #c4ff00;
}

.home-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #c4ff00;
}

.home-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #d2d2d2;
}

.contact-content {
    max-width: 980px;
}

.contact-section {
    background: linear-gradient(180deg, #111 0%, #1e1e1e 100%);
    border: 1px solid #3a3a3a;
    border-left: 4px solid #c4ff00;
    border-radius: 10px;
    padding: 26px;
}

.contact-intro {
    margin-bottom: 18px;
    color: #d2d2d2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.contact-card {
    background-color: #222;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 16px;
}

.contact-card h3 {
    margin: 0 0 8px;
}

.contact-card p {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #d2d2d2;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: #c4ff00;
    font-weight: 700;
}

.contact-card a:hover {
    text-decoration: underline;
}

.lang-switcher {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #c4ff00;
    border: 1px solid #c4ff00;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: 700;
}

.lang-caret {
    font-size: 0.85rem;
}

.lang-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 6px;
    background: #1e1e1e;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    min-width: 185px;
    display: none;
    max-height: 260px;
    overflow-y: auto;
}

.lang-switcher.open .lang-menu {
    display: block;
}

.lang-option {
    width: 100%;
    border: none;
    background: transparent;
    color: #d2d2d2;
    text-align: left;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option:hover {
    background: #2a2a2a;
    color: #c4ff00;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-gadget {
    display: none !important;
}

iframe.goog-te-banner-frame,
body > .skiptranslate,
.goog-te-spinner-pos,
.goog-tooltip,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
}

html.translated-ltr body,
html.translated-rtl body,
html body {
    top: 0 !important;
    margin-top: 0 !important;
}

body {
    top: 0 !important;
}

footer {
    background-color: #000;
    color: #c4ff00; /* Exacte kleur van de lijnen in het logo */
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #c4ff00; /* Toevoegen van een scheidingslijn boven de footer */
}

section p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 24px;
    text-align: left;
}

section h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid #c4ff00;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    header {
        min-height: 220px;
        padding: 28px 12px;
    }

    .logo {
        max-width: 170px;
    }

    h1 {
        font-size: 2rem;
        padding: 0 34px;
    }

    nav {
        padding: 8px 0;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 8px 10px;
        padding: 0 8px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: inline-block;
        padding: 8px 10px;
        font-size: 0.95rem;
    }

    .content {
        padding: 24px 14px 28px;
        margin: 0 auto 22px;
    }

    .home-hero {
        padding: 18px;
    }

    .home-cta {
        padding: 9px 12px;
        font-size: 0.95rem;
    }

    .home-links {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 18px;
    }

    section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .lang-switcher {
        top: 8px;
        right: 8px;
    }

    footer {
        position: static;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.65rem;
        padding: 0 28px;
    }

    .lang-toggle {
        padding: 5px 8px;
        font-size: 0.9rem;
    }

    .lang-menu {
        min-width: 165px;
    }
}