/* ⭐ BASIS */
body{
    margin:0;
    background:#f2f2f2;
    font-family:Arial, sans-serif;
    padding-bottom:100px;
    line-height:1.4; /* ⭐ betere leesbaarheid voor SEO */
}

/* ⭐ HEADER-BALK */
.header-balk{
    background:#000;
    color:#fff;
    text-align:center;
    font-size:26px;
    padding:12px 0;
    border-bottom:2px solid #333;
    position:relative;
    z-index:10;
}

/* ⭐ GROTE TITEL (H1) — MET 2 REGELS RUIMTE */
.grote-titel{
    text-align:center;
    font-size:42px;
    font-weight:bold;
    color:#000;
    margin:40px auto 60px;
    width:100%;
}

/* ⭐ GRIJZE LIJN BOVEN LETTERBALK */
.lijn-boven-letterbalk{
    border-top:2px solid #ccc;
    margin:0 auto 20px;
    width:90%;
}

/* ⭐ TEKST TUSSEN DE LIJNEN (H2) */
.letter-tekst{
    text-align:center;
    width:100%;
    display:block;
    font-size:26px;
    font-weight:bold;
    margin:10px 0;
    color:#000;
}

/* ⭐ LETTERBALK */
.letter-container{
    text-align:center;
    margin:10px 0 25px 0;
}
.letter{
    display:inline-block;
    margin:6px;
    padding:10px 16px;
    background:#fff;
    border:1px solid #ccc;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    font-size:18px;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
}
.letter:hover{
    background:#eee;
}
.letter:focus{
    outline:3px solid #000; /* ⭐ toegankelijkheid → SEO */
}

/* ⭐ EXTRA RUIMTE TUSSEN A-Z EN KNOPPEN */
.extra-ruimte{
    height:30px;
}

/* ⭐ LIJN BOVEN KNOPPEN */
.lijn-boven-knoppen{
    border-top:2px solid #ccc;
    margin:10px 0 15px 0;
}

/* ⭐ EXTRA KNOPPEN BLOK */
.extra-knoppen{
    text-align:center;
    margin:10px 0 20px 0;
}
.extra-knoppen a{
    display:inline-block;
    padding:12px 22px;
    margin:8px;
    background:#fff;
    border:1px solid #ccc;
    border-radius:8px;
    text-decoration:none;
    color:#000;
    font-weight:bold;
    font-size:18px;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
    transition:transform 0.15s ease, box-shadow 0.15s ease;
}
.extra-knoppen a:hover{
    background:#f2f2f2;
    transform:translateY(-3px);
}
.extra-knoppen a:focus{
    outline:3px solid #000; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ MERKEN-KNOPPEN */
.merk-knop{
    display:inline-block;
    padding:14px 22px;
    margin:8px;
    background:#f5f5f5;
    border:1px solid #ccc;
    border-radius:6px;
    text-decoration:none;
    color:#000;
    font-weight:bold;
    white-space:nowrap;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
    transition:transform 0.15s ease;
}
.merk-knop:hover{
    background:#e9e9e9;
    transform:translateY(-3px);
}
.merk-knop:focus{
    outline:3px solid #000; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ MERKEN-CONTAINER */
.merken-container{
    text-align:center;
    margin:20px 0;
}

/* ⭐ LIJNEN BOVEN/ONDER MERKEN */
.lijn-boven,
.lijn-onder{
    border-top:2px solid #ccc;
    width:90%;
    margin:20px auto;
}

/* ⭐ TERUGKNOP OP DE BOVENSTE LIJN */
.lijn-boven-terug{
    width:90%;
    margin:20px auto;
    border-top:2px solid #ccc;
    position:relative;
    height:0;
}
.lijn-boven-terug a{
    position:absolute;
    top:-12px;
    left:0;
    background:#fff;
    border:1px solid #ccc;
    border-radius:6px;
    padding:6px 14px;
    font-size:16px;
    font-weight:bold;
    color:#000;
    text-decoration:none;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
}
.lijn-boven-terug a:focus{
    outline:3px solid #000; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ TERUGKNOP OP DE ONDERSTE LIJN */
.lijn-onder-terug{
    width:90%;
    margin:40px auto 20px auto;
    border-top:2px solid #ccc;
    position:relative;
    height:0;
}
.lijn-onder-terug a{
    position:absolute;
    top:-12px;
    left:0;
    background:#fff;
    border:1px solid #ccc;
    border-radius:6px;
    padding:6px 14px;
    font-size:16px;
    font-weight:bold;
    color:#000;
    text-decoration:none;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
}
.lijn-onder-terug a:focus{
    outline:3px solid #000; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ GRID — 6 / 4 / 2 */
.bandjes-container{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:12px;
    width:100%;
    padding:10px;
    box-sizing:border-box;
}
@media (max-width: 900px){
    .bandjes-container{ grid-template-columns:repeat(4, 1fr); }
}
@media (max-width: 600px){
    .bandjes-container{ grid-template-columns:repeat(2, 1fr); }
}

/* ⭐ BANDJES — ORIGINELE WEERGAVE */
.bandje img{
    width:100%;
    height:auto;
    max-height:120px;
    object-fit:contain;
    display:block;
    cursor:pointer;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
    transition:transform 0.15s ease;
}
.bandje img:hover{
    transform:translateY(-3px);
}
.bandje img:focus{
    outline:3px solid #000; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ INFOBOX */
.info-box{
    margin-top:6px;
    padding:10px;
    background:#f7f7f7;
    border:1px solid #ccc;
    border-radius:6px;
    display:none;
    font-size:16px;
}

/* ⭐ ONDERBALK */
.onderbalk{
    background:#000;
    color:#fff;
    padding:10px 20px;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    font-size:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ⭐ ZOEKPAGINA — XXL zoekveld + extra ruimte */
.zoek-container{
    width:100%;
    text-align:center;
    margin-top:60px;
}
.zoek-form{
    display:inline-block;
}
.zoek-input-xxl{
    width:600px;
    padding:20px;
    font-size:24px;
    border:1px solid #ccc;
    border-radius:10px;
    background:#fff;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
}
.zoek-input-xxl:focus{
    outline:3px solid #000; /* ⭐ SEO toegankelijkheid */
}
.zoek-button-xxl{
    padding:20px 40px;
    font-size:24px;
    border-radius:10px;
    margin-left:12px;
    background:#000;
    color:#fff;
    border:none;
    cursor:pointer;
    font-weight:bold;
}
.zoek-button-xxl:focus{
    outline:3px solid #fff; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ 5 regels ruimte onder zoekveld */
.zoek-ruimte-onder{
    height:140px;
}

/* ⭐ NIEUWE ZWARTE BALK */
.zwarte-balk {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 22px;
    z-index: 9999;
    border-bottom: 2px solid #333;
}

.zwarte-balk a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.zwarte-balk a:focus{
    outline:3px solid #fff; /* ⭐ SEO toegankelijkheid */
}

/* ⭐ EXTRA: ruimte zodat H1 niet onder de zwarte balk valt */
body{
    padding-top:70px; /* ⭐ SEO: Google moet H1 kunnen zien */
}
