/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    padding-top:66px;
    line-height: 1.6;
    color: #222;
    background:#f6F6F6;
}

h1 {
    margin-bottom: 30px;
    font-size: clamp(1.75rem, 4vw + 0.25rem, 2.25rem);
}
h2 {
    margin-bottom: 40px;
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2rem);
}
h3.card { font-size: 1.1rem; }
h3.textcard { font-size: 1rem; }
h3.minicard { font-size: 0.9rem; }

.light-grey-section { background: #f9f9f9; padding: 40px 0; }
.white-section { padding: 40px 0; }

p { margin-bottom: 1rem; }
p a { color: #FF711B; text-decoration: none; }
p a:hover { text-decoration: underline; }

button {
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.6;
    cursor: pointer;
    background-color: #FF711B;
    transition: background-color 0.3s;
}
button:hover { background-color: #E66014; }
@media (max-width: 600px) { button { width: 100%; } }

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* ==========================
   Header base
========================== */

.site-header {
    position: fixed; /* maakt de header sticky */
    top: 0;
    left: 0;
    width: 100%;
    height:66px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 9999; /* boven alle content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* subtiele schaduw */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1040px;
    height:100%;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
}

/* --------------------------
   Logo
-------------------------- */
.logo img {
    max-height: 33px;
    vertical-align:middle;
}

/* --------------------------
   Main nav desktop
-------------------------- */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav ul li a {
    text-decoration: none;
    color: #222;
}

.main-nav ul li a:hover {
    color: #FF711B;
}


/* --------------------------
   Language dropdown
-------------------------- */
.lang-switch {
    position: relative;
    display: inline-block;
}

.lang-btn { padding: 5px 10px; color: #222; font-size: 0.875rem; cursor: pointer; background: none; border-radius: 6px; }
.lang-btn:hover { color: #FF711B; background: none; }

.lang-menu {
    position: absolute;
    margin-top: 16px;
    right: 0;
    top: 100%;
    background: #fff;
    list-style: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    display: none;
    min-width: 160px;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    z-index: 1000;
}

.lang-menu.show {
    display: block;
}

.lang-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
}

.lang-menu li a:hover {
    background-color: #f2f2f2;
}

/* ==========================
   Hamburger Menu (Mobile)
========================== */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-shrink: 0;
    position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #333;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    content: '';
    transition: all 0.3s;
}

.nav-toggle-label span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-label span::before {
    top: -10px;
}

.nav-toggle-label span::after {
    top: 10px;
}

.nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle:checked + .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================
   Responsive <1000px
========================== */
@media screen and (max-width: 1039px) {
    .header-inner {
        justify-content: space-between;
    }

    /* Show hamburger */
    .nav-toggle-label {
        display: block;
    }

    /* Hide desktop nav */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid #ddd;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li a {
        padding: 0.75rem 1rem;
        display: block;
    }

    /* Show nav when checked */
    .nav-toggle:checked ~ .main-nav {
        width:50%;
        max-height: 500px; 
        border-bottom: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* Align logo and lang button in center/right */
    .logo {
        order: 2;
    }
    .lang-switch {
        order: 3;
    }
    .nav-toggle-label {
        order: 1;
    }
}

@media screen and (max-width: 600px) {
    .nav-toggle:checked ~ .main-nav {
        width:100%;
    }
}

/* ==========================
   Overlay bij open menu
========================== */
.menu-overlay {
    position: fixed;
    top: 66px; /* hoogte van je sticky header */
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: rgba(0, 0, 0, 0.45); /* donker maar doorzichtig */
    opacity: 0;
    pointer-events: none; /* standaard niet klikbaar */
    transition: opacity 0.25s ease;
    z-index: 9998; /* net onder header (9999) */
}

/* zichtbaar */
.menu-overlay.active {
    opacity: 1;
    pointer-events: auto; /* vangt clicks */
}


/* ===== BREADCRUMBS ===== */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: #333;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.breadcrumb li { display: inline-flex; align-items: center; }

.breadcrumb a { color: #FF711B; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #666;
}

.breadcrumb .currentbreadcrumbpage {
    color: #666;
    font-weight: 500;
}

.iframe-container { position:relative; width:100%; margin:20px 0 35px 0; padding-bottom:56.25%; height:0; }
.iframe-container iframe { position:absolute; top:0; left:0; width:100%; height:100%; }


.article-section {
    margin: 20px auto 40px auto;
    max-width: 1000px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.article-content {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding:20px;
}

.article-content h2 {
    margin:30px 0 20px 0;
    border-left: 4px solid #FF711B;
    padding-left: 10px;
}

.article-content h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    border-left: 4px solid #FF711B;
    padding-left: 10px;
}

.article-meta {
    display: flex;
    justify-content: space-between; /* auteur links, datum rechts */
    align-items: center;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Links en rechts eventueel kleine styling */
.article-meta .author a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
}

.article-meta .author a:hover {
    color: #FF711B;
}

/* Responsive voor kleinere schermen */
@media screen and (max-width: 1039px) {
    .article-meta {
        flex-direction: row; /* blijft horizontaal */
        justify-content: space-between;
    }
}

.article-content .hero-image img {
    width:100%;
    border-radius: 12px;
}

.article-content p.intro {
    margin: 1.5rem 0;
    font-size: 1.05rem;
    font-weight: bold;
}

.article-content ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-bottom: 1em;
}

.article-content li {
    margin-bottom: 0;
}

/* ==========================
   Extra sectie-afbeeldingen
========================== */
.section-image {
    margin: 2rem auto;
    width: 80%;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Mobile tweaks */
@media screen and (max-width: 768px) {
    .section-image {
        margin: 2rem auto;
        width: 100%;
    }
}

/* PROS & CONS layout */
.pros-cons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* ruimte tussen pros en cons */
    margin: 20px 0;
}

.pros-cons-container .pros,
.pros-cons-container .cons {
    flex: 1;
    min-width: 250px; /* voorkomt te smalle kolommen */
}

.pros-cons-container h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    padding-left: 10px;
}
.pros-cons-container h3.pros-title {
    border-left: 4px solid #00a651;
}
.pros-cons-container h3.cons-title {
    border-left: 4px solid #FF4C4C;
}

.pros-cons-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .pros-cons-container {
        flex-direction: column;
        gap: 20px;
    }
}


/* =========================
   Contact Form Styling
   ========================= */
.contact {
    max-width: 850px;
    margin: 2em auto;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.3em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1.2em;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FF711B;
    box-shadow: 0 0 5px rgba(255,113,27,0.4);
    outline: none;
}

/* Hidden honeypot input */
.contact-form input[name="website"] {
    display: none;
}

/* Success & error messages */
.contact-success {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
    padding: 1em;
    margin-bottom: 1.5em;
    color: #155724;
    border-radius: 5px;
}

.contact-errors {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    padding: 1em;
    margin-bottom: 1.5em;
    color: #721c24;
    border-radius: 5px;
}

.contact-errors ul {
    margin: 0;
    padding-left: 1.5em;
}

.contact-errors li {
    margin-bottom: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact {
        padding: 1.5em;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #FF711B;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-top {
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center de links */
    gap: 15px;
}

.footer-nav li {
    margin: 0;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 15px 0;
}

.footer-social a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: #aaa;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    color: #FF711B;
}

.footer-icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}





























/* ===== GEN PAGE ===== */
.gen-intro-card {
    max-width: 850px;
    margin: 0 auto 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.gen-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gen-intro-text {
    padding: 25px 28px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.main-gen-image {
    max-width: 320px;
    margin: 0 auto 40px auto;
}
.main-gen-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gen-intro {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
}

.gen-versions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gen-version-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
}

.gen-version-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}

.gen-version-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gen-version-title h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    border-left: 4px solid #FF711B;
    padding-left: 10px;
}

.gen-version-specs-wrapper { width: 100%; }
.gen-version-specs { list-style: none; padding: 0; margin: 0 0 12px 0; }
.gen-version-specs li {
    padding: 4px 0;
    color: #444;
    font-size: 0.95rem;
}

.gen-version-buttons {
    display: flex;
    gap: 12px;
}
.gen-version-buttons .btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background-color: #FF711B;
    color: #fff;
    transition: all 0.25s;
}
.gen-version-buttons .btn:hover {
    background-color: #E66014;
}

@media (max-width: 768px) {
    .gen-versions-grid { grid-template-columns: 1fr; }
    .gen-version-buttons { flex-direction: column; }
}

/* ===== VERSION PAGE ===== */
.version-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.version-gallery img {
    width: 100%;
    border-radius: 12px;
}
.version-gallery .wide-image { grid-column: span 2; }


table.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    table-layout: fixed;
}
table.spec-table td:first-child, table.spec-table td:last-child { width: 50%; }
table.spec-table td { padding: 10px 8px; border-bottom: 1px solid #eee; }
.spec-table .subsection {
    background: #f9f9f9;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px;
    color: #333;
    border-left: 4px solid #ffa25f;
}
.subsection-spacing { height: 8px; }

.main-version-image {
    max-width: 850px;
    margin: 0 auto 40px auto;
}
.main-version-image img { width: 100%; height: auto; border-radius: 12px; }

.version-gallery-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.version-gallery-extra img { width: 100%; border-radius: 12px; }

.version-list, .generation-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.version-list li, .generation-list li { display: inline-block; }
.version-list a, .generation-list a {
    display: inline-block;
    background: #f6f6f6;
    border-radius: 6px;
    padding: 6px 12px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s, color 0.2s;
}
.version-list a:hover, .generation-list a:hover {
    background: #FF711B;
    color: #fff;
}

.version-switch-box {
    max-width: 850px;
    margin: 30px auto 50px auto;
    text-align: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.version-switch-box p { margin-bottom: 15px; font-size: 1rem; color: #333; }
.version-switch-button {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.version-switch-button .btn-specs {
    background-color: #FF711B;
    color: #fff;
}
.version-switch-button .btn-specs:hover { background-color: #E66014; }
@media (max-width: 480px) { .version-switch-button { flex-direction: column; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero p { font-size: 1rem; }
}
@media (max-width: 480px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
}











/* Footer - voorlopig overgenomen voor oude taal-footers, later compleet te verwijderen */
#footer				{ width:100%; float:left; clear:both; }
.footer-one			{ width:100%; float:left; padding:0 0 0 0; background-color:#444; }
.footer-two			{ width:100%; float:left; padding:5px 0 5px 0; color:#DDD; text-align:center; background-color:#333; }
.wrapper-footer-one	{ max-width:1000px; margin:0 auto; overflow-x:hidden; }
.wrapper-footer-two	{ max-width:1000px; margin:0 auto; overflow-x:hidden; }
a.footer:link, a.footer:visited	{ width:100%; float:left; padding-bottom:5px; color:#FFF; text-decoration:none; }
a.footer:hover, a.footer:active, a.footer:focus	{ width:100%; float:left; padding-bottom:5px; color:#FF862D; text-decoration:none; }
.footer-column		{ float:left; margin:16px 0 16px 0; }
.footer-title		{ width:100%; float:left; padding-bottom:10px; font-weight:bold; color:#FFF; }
.footer-text		{ width:100%; float:left; color:#FFF; }
@media only screen and (min-width: 900px) {	
.footer-column { width:29.33%; padding:10px 2% 0 2%; }
}
@media only screen and (max-width: 900px) {
.footer-column { width:29.33%; padding:10px 2% 0 2%; }
}
@media only screen and (max-width: 600px) {
.footer-title { text-align:center; }
a.footer:link { text-align:center; }
.footer-column { width:94%; padding:10px 3% 0 3%; }
}
