/* --- DB CUSTOM THEME - 2T & PCB DESIGN --- */
:root {
    --bg-dark: #0a0b0d;
    --card-bg: rgba(22, 25, 30, 0.92);    /* Licht transparant donkergrijs */
    --card-border: #2e281e;                /* Subtiel gouden/donkere rand */
    --gold-accent: #d4a359;                /* Gouden/koperen kleur van de PCB lijnen */
    --gold-hover: #f0be71;                 /* Lichtere goudkleur bij hover */
    --text-main: #e2e8f0;                  /* Goed leesbare lichte tekst */
    --text-muted: #94a3b8;                 /* Dof goud/grijs voor datum/meta */
}

/* 1. Seamless Achtergrond */
/* --- 1. SEAMLESS ACHTERGROND --- */
body {
    background-color: var(--bg-dark);
    background-image: url('images/website background.png');
    background-repeat: repeat;             /* Herhaalt naadloos in alle richtingen */
    background-position: center top;

    /* Standaard voor desktop: een mooie grote schaal */
    background-size: 1200px auto;
    background-attachment: scroll;
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
}

/* Tablet schermen (kleiner dan 1024px) */
@media (max-width: 1024px) {
    body {
        background-size: 800px auto;       /* Schaalt het patroon iets kleiner */
    }
}

/* Mobiele schermen (kleiner dan 600px) */
@media (max-width: 600px) {
    body {
        background-size: 450px auto;       /* Schaalt het patroon compact voor telefoons */
    }
}

/* 2. Content Cards */
article, .card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);            /* Zorgt voor extra leesbaarheid boven de achtergrond */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

article:hover {
    border-color: var(--gold-accent);
    transform: translateY(-2px);
}

/* 3. Titels & Links */
h1, h2, h3 {
    color: #ffffff;
    margin-top: 0;
}

h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

h2 a:hover {
    color: var(--gold-hover);
}

a {
    color: var(--gold-accent);
    text-decoration: none;
}

a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* Meta tekst */
.entry-meta, .post-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}
