/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body { line-height: 1.6; color: #222; }

h1 { text-align: center; margin-bottom: 30px; font-size: clamp(1.75rem, 4vw + 0.25rem, 2.25rem); }
h2 { text-align: center; 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; }


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%; }}

p { margin-bottom: 1rem; }
p a { color: #FF711B; text-decoration: none; }
p a:hover { text-decoration: underline; }









/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 33px;
}

.nav-links .btn-compare {
    text-decoration: none;
    padding: 8px 15px;
    background-color: #FF711B;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-links .btn-compare:hover {
    background-color: #E66014;
}

/* ===== LANGUAGE DROPDOWN ===== */
.language-dropdown { position: relative; }

.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: 14px;
    right: 0;
    top: 100%;
    background-color: #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;
}

.lang-menu.show {
    display: block;
}

.lang-menu li a {
    display: block;
    padding: 9px 30px;
    color: #222;
    text-decoration: none;
}

.lang-menu li a:hover {
    background-color: #f2f2f2;
}

/* ==========================
   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 */
}

/* ===== HERO ===== */
.hero {
    background-color: #FF711B;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0px; /* was origineel 30px */
}

.hero-btn {
    text-decoration: none;
    padding: 12px 25px;
    background-color: #fff;
    color: #FF711B;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
    background-color: #f2f2f2;
}

/* ===============================
   BREADCRUMBS (SCHEMA.ORG COMPATIBLE)
   =============================== */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-align: center;
    color: #333;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px; /* ruimte tussen items + scheidingsteken */
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

/* Links */
.breadcrumb a {
    color: #FF711B;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Separator ( / ) */
.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #666;
}

/* Laatste item = huidig item */
.breadcrumb .currentbreadcrumbpage {
    color: #666;
    font-weight: 500;
}

/* ===== HOMEPAGE BRANDS OVERVIEW GRID ===== */
.brand-overview {
    margin: 40px 0;
}

.brand-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.brand-overview-card {
    background: #f9f9f9;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s; /* Voeg box-shadow toe */
}

.brand-overview-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.brand-overview-card a {
    display: block;
    font-weight: 600;
    color: #222;
    padding: 12px 6px;
    text-decoration: none;
    font-size: 1rem;
}

/* ===== BRANDS GRID ===== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    justify-content: center; /* centraalt de kaarten bij weinig items */
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Voeg box-shadow toe */
    display: block;
    text-decoration: none;
    color: inherit;

    max-width: 300px; /* maximale breedte per card */
    width: 100%;      /* zorgt dat ze smaller kunnen zijn op kleinere schermen */
    margin: 0 auto;   /* centreert de card als er minder dan 1 rij is */
}

.brand-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.brand-card img {
    width: 100%;
    height: auto;
}

.brand-card h3 {
    padding: 10px 12px;
}



/* ===== LATEST VERSIONS GRID ===== */
.latest-versions {
    margin: 40px 0;
}

.version-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* Version card horizontaal: image left, text right */
.version-card {
    display: flex;
    align-items: stretch; /* Zorgt dat child divs dezelfde hoogte krijgen */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Voeg box-shadow toe */
}

.version-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.version-image {
    flex: 0 0 100px; /* Breedte van image column */
}

.version-image img {
    width: 100%;
    height: 100%; /* Vul volledige hoogte van parent */
    object-fit: cover;
    display: block; /* voorkomt extra space onder image */
    border-radius: 6px 0 0 6px;
}

.version-linktitle {
    padding: 0 10px;
    flex: 1; /* neemt de rest van de ruimte */
    display: flex;
    align-items: center; /* centering vertically */
}

.version-linktitle h3 {
    margin: 0;
    line-height: 1.4;
}




/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-container {
        /* Blijf horizontaal, logo links, dropdown rechts */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* zodat bij extreem kleine schermen het netjes naar nieuwe regel kan gaan */
    }

    .nav-links {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .hero p {
        font-size: 1rem;
    }
}


/* Standaard smartphones: 2 kolommen */
@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ===== BRAND PAGE ===== */
.box {
    background: #fff;
    margin-bottom:40px;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    line-height: 1.6;
    max-width: 100%;
}
.box a {
    color: #FF711B;
    text-decoration: underline;
}

.model-years { padding-bottom: 10px; }

/* ===== BRAND PARAGRAPH ===== */
.brand-paragraph {
    background-color: #fff;    /* witte achtergrond */
    padding: 20px 40px;          /* binnenruimte */
    border-radius: 12px;         /* afgeronde hoeken, zoals bij brand cards */
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); /* zachte schaduw */
    margin-bottom: 30px;         /* ruimte onder de paragraaf */
    width: 100%;                 /* volledige breedte van de container */
    line-height: 1.6;            /* betere leesbaarheid */
    font-size: 1rem;             /* consistente lettergrootte */
    color: #333;               /* donkere tekstkleur */
}




/* ============================================
   GEN PAGE – NIEUWE STYLING 2026
   ============================================ */

/* ===== GEN INTRO CARD ===== */
.gen-intro-card {
    max-width: 850px;
    margin: 0 auto 40px auto; /* centreren + extra onderaan */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden; /* zodat afgeronde hoeken ook op de afbeelding gelden */
}

/* Afbeelding altijd bovenaan, volledige breedte */
.gen-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tekst onder de afbeelding */
.gen-intro-text {
    padding: 25px 28px;
    font-size: 1.05rem;
    line-height: 1.6;
}




/* Centrale foto */
.main-gen-image {
    max-width: 320px;
    margin: 0 auto 40px auto;
    padding: 0;
}
.main-gen-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Intro box */
.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;
}

/* Grid voor de versies */
.gen-versions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* desktop: 2 cards per rij */
    gap: 25px;
    margin-top: 40px;
}

/* Version card */
.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);
}

/* Flex container: verticale stapeling binnen card */
.gen-version-card-content {
    display: flex;
    flex-direction: column; /* specs en knoppen onder titel */
    gap: 12px;
}

/* Titel */
.gen-version-title h3 {
margin-bottom: 15px;
font-size: 1.35rem;
border-left: 4px solid #FF711B;
padding-left: 10px;
}

/* Specs lijst */
.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;
}

/* Knoppen onder specs */
.gen-version-buttons {
    display: flex;
    gap: 12px;
}

/* Knoppen stijl identiek */
.gen-version-buttons .btn {
    flex: 1; /* verdeelt ruimte gelijkmatig */
    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;
}

/* Responsive: mobiel 1 card per rij, knoppen onder elkaar */
@media (max-width: 768px) {
    .gen-versions-grid {
        grid-template-columns: 1fr; /* 1 card per rij */
    }
    .gen-version-buttons {
        flex-direction: column;
    }
}





/* ===== VERSION PAGE ===== */

/* Image gallery */
.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;
}


/* Spec sections */
.spec-section {
margin: 0 auto 40px auto;
max-width: 850px;
background: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.more-version-gens-section {
margin-bottom: 40px;
background: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


.spec-section h3, .more-version-gens-section h3 {
margin-bottom: 15px;
font-size: 1.35rem;
border-left: 4px solid #FF711B;
padding-left: 10px;
}


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;
}

/* Subsection row inside spec tables */
.spec-table .subsection {
    background: #f9f9f9;          /* lichte achtergrond */
    font-weight: 600;            /* subtiel vet */
    font-size: 1rem;             /* iets groter dan cellen */
    padding: 10px 10px;
    color: #333;
    border-bottom: 0px solid #e5e5e5;
    border-left: 4px solid #ffa25f; /* zelfde stijl als sectietitel */
}

/* Laat de border en radius mooi uitkomen */
.spec-table .subsection:first-child {
    margin-top: 5px;
}

/* Extra spacing boven elke subsection */
.subsection-spacing {
    height: 8px;
}


/* Centrale grote foto */
.main-version-image {
    max-width: 850px;
    margin: 0 auto 40px auto;
}

.main-version-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Extra foto's onder specs → 2 kolommen */
.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 {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.version-list li {
  display: inline-block;
}

.version-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 {
  background: #FF711B;
  color: #fff;
}

.generation-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.generation-list li {
  display: inline-block;
}

.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;
}

.generation-list a:hover {
  background: #FF711B;
  color: #fff;
}



/* ===== VERSIONSPECS & VERSIONDIMENSIONS SWITCH BOX ===== */
.version-switch-box {
    max-width: 850px;
    margin: 30px auto 50px auto; /* centreren en ruimte boven/onder */
    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 {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.version-switch-button .btn-specs {
    background-color: #FF711B;
    color: #fff;
}

.version-switch-button .btn-specs:hover {
    background-color: #E66014;
}

/* Responsive: mobiele weergave knoppen onder elkaar */
@media (max-width: 480px) {
    .version-switch-button {
        flex-direction: column;
    }
}






/* =========================
   Legal & Contact Form Styling
   ========================= */
.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;
}


/* =========================
   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-family: Arial, sans-serif;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #FF711B;
}

.footer-container {
    max-width: 1200px;
    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;
    }
}
