/* =========================================
   THE TINY WALNUT - HOME
   ========================================= */


/* ---------- DESKTOP ---------- */

@media screen and (min-width: 769px) {

    /* Welkomstvlak */
    .home-intro {
        position: relative;
        width: 500px;
        max-width: 38vw;

        margin: 40px 0 150px 8%;
        padding: 32px 38px;

        background: rgba(8, 15, 10, 0.62);
        border-radius: 8px;

        box-sizing: border-box;
        line-height: 1.4;
        z-index: 10;
    }

    .home-intro p {
        margin: 0 0 18px 0;
    }


    /* Vier navigatiekaarten */
    .home-links {
        position: absolute;

        left: 3%;
        right: 3%;
        bottom: 18px;

        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;

        margin: 0;
        padding: 0;

        z-index: 20;
    }

    .home-links p {
        margin: 0;
        padding: 0;
        min-width: 0;
    }

    .home-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 86px;
        padding: 16px 24px;

        background: rgba(8, 15, 10, 0.90);
        border: 2px solid rgba(255,255,255,0.70);
        border-radius: 8px;

        box-sizing: border-box;

        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: bold;
        line-height: 1.2;
    }

    .home-links a::after {
        content: "\2192";
        color: #99cc00;
        font-size: 170%;
        margin-left: 15px;
        flex-shrink: 0;
    }

    .home-links a:hover {
        background: rgba(45,65,25,0.95);
        border-color: #99cc00;
    }
}
@media screen and (min-width: 769px) {

    #m1788071440.fullscreen {
        min-height: calc(100vh - 70px) !important;
    }

}
/* ---------- MOBIEL ---------- */

@media screen and (max-width: 768px) {

    .home-intro {
        position: relative;

        width: 92%;
        max-width: none;

        margin: 20px auto;
        padding: 28px 24px;

        background: rgba(10,18,12,0.62);
        border-radius: 8px;

        box-sizing: border-box;
        line-height: 1.4;
    }

    .home-intro p {
        margin: 0 0 16px 0;
    }


    /* Mobiel: knoppen onder elkaar */
    .home-links {
        position: static;

        width: 92%;
        margin: 20px auto 0;

        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .home-links p {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .home-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 64px;
        padding: 14px 18px;

        background: rgba(10,18,12,0.86);
        border: 1px solid rgba(255,255,255,0.45);
        border-radius: 6px;

        box-sizing: border-box;

        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 90% !important;
        line-height: 1.2;
    }

    .home-links a::after {
        content: "\2192";
        color: #99cc00;
        font-size: 125%;
        margin-left: 12px;
        flex-shrink: 0;
    }
}