/* ================================
   GLOBAL
================================ */
* {
    box-sizing: border-box;
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

/* ================================
   FULLSCREEN MENU
================================ */
article {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;

    background:
        radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 60%),
        linear-gradient(180deg, #0a0a0a, #000);

    overflow-y: auto;
    padding: 30px 0;
}

/* ================================
   LOGO
================================ */
header {
    text-align: center;
    margin-bottom: 25px; /* 🔧 kleiner */
}

header img {
    max-width: 340px;
    filter: drop-shadow(0 0 18px red);
}

/* ================================
   CONTENT WRAPPER
================================ */
#items {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    flex-direction: column;
    gap: 45px; /* 🔧 minder ruimte tussen secties */
}

/* ================================
   TITELS
================================ */
h1 {
    text-align: center;
    font-size: 30px;
    letter-spacing: 6px;
    color: #ff3b3b;

    margin: 0 0 15px 0; /* 🔧 strak tegen container */

    text-shadow:
        0 0 8px rgba(255,60,60,0.8),
        0 0 18px rgba(255,0,0,0.6);
}

/* ================================
   SECTIE CONTAINER
================================ */
section {
    width: 100%;
    padding: 20px; /* 🔧 compacter */
    border-radius: 18px;

    background:
        linear-gradient(180deg, rgba(255,0,0,0.06), rgba(0,0,0,0.8));

    box-shadow:
        inset 0 0 40px rgba(0,0,0,0.9),
        0 0 25px rgba(0,0,0,0.6);
}

/* ================================
   ITEMS RIJ
================================ */
.sectionitems {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px; /* 🔧 iets strakker */
    flex-wrap: wrap;
}

/* ================================
   ITEM CARD
================================ */
.item {
    width: 230px;
    height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 16px;
    border-radius: 16px;

    background: linear-gradient(180deg, #0f0f0f, #000);
    border: 2px solid rgba(255,255,255,0.14);

    box-shadow:
        inset 0 0 25px rgba(0,0,0,0.9),
        0 0 20px rgba(0,0,0,0.7);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 18px rgba(0,255,120,0.5),
        inset 0 0 25px rgba(0,0,0,0.85);
}

/* ================================
   IMAGE
================================ */
.item img {
    width: 100%;
    height: 135px; /* 🔧 iets lager */
    object-fit: contain;
}

/* ================================
   TEKST
================================ */
.item .label {
    font-weight: bold;
    font-size: 15px;
    margin-top: 4px;
    text-align: center;
}

.price {
    color: #1bff78;
    font-size: 18px;
    font-weight: bold;

    text-shadow:
        0 0 6px rgba(27,255,120,0.9),
        0 0 12px rgba(27,255,120,0.6);
}
