/* =========================================================
   WOOD BUTTON SHADOW SYSTEM
   ---------------------------------------------------------
   Doel:
   - Simuleert een 3D houten knop
   - Inset shadows vormen afgeronde randen + houtvolume
   - Outer shadows geven gewicht en contact met de pagina
   - Hover = lichter + iets omhoog
   - Active = ingedrukt, compacter
   ========================================================= */

/* -------------------------
   Default
   ------------------------- */
.btn-wood {
  box-shadow:
    /* Inset – bovenrand (licht) */
    inset 0 8px 8px rgba(193, 193, 193, 0.55),

    /* Inset – onderrand (diepte) */
    inset 0 -18px 10px rgba(0, 0, 0, 0.5),

    /* Inset – warme houttoon */
    inset 0 -18px 20px rgba(189, 110, 42, 0.14),
    inset 0 -36px 30px rgba(240, 255, 232, 0.16),

    /* Outer – contact & massa */
    0 2px 1px rgba(0, 0, 0, 0.22),
    0 4px 2px rgba(0, 0, 0, 0.09),
    0 8px 4px rgba(0, 0, 0, 0.09),
    0 16px 8px rgba(0, 0, 0, 0.09),
    0 28px 14px rgba(0, 0, 0, 0.12);
}
/* -------------------------
   Hover
   ------------------------- */
.btn-wood:hover {
  box-shadow:
    inset 0 10px 10px rgba(193, 193, 193, 0.6),
    inset 0 -16px 10px rgba(0, 0, 0, 0.45),
    inset 0 -18px 22px rgba(189, 110, 42, 0.18),
    inset 0 -34px 28px rgba(240, 255, 232, 0.18),

    /* Minder lagen, meer focus */
    0 8px 18px rgba(0, 0, 0, 0.35);
}

/* -------------------------
   Active (pressed + glow)
   ------------------------- */

.btn-wood:active {
  box-shadow:
    /* Inset – bovenrand (licht) */
    inset 0 10px 10px rgba(193, 193, 193, 0.6),

    /* Inset – onderrand (diepte) */
    inset 0 -16px 10px rgba(0, 0, 0, 0.45),

    /* Inset – warme houttoon */
    inset 0 -18px 22px rgba(189, 110, 42, 0.18),
    inset 0 -34px 28px rgba(240, 255, 232, 0.18),

    /* Outer – glow / energie */
    0 0 0 2px rgba(77, 71, 75, 0.27),
    0 0 18px 6px rgba(127, 112, 58, 0.79);
}


/* images filter hadows uitgewerkt*/

/* yinyang */

.yinyang {
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.85));
}
.yinyang {
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.75));
}
