/* =====================================================
   ENGELS811 NETWORK – HARDWARE.CSS (FINAL)
   Fokus: Dichte, Struktur, Showcase
===================================================== */

/* ===============================
   PAGE WRAPPER
================================ */

.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px 120px;
}

/* ===============================
   PAGE HEADER
================================ */

.page-head {
    text-align: center;
    margin-bottom: 60px;
}

.page-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 12px;
}

.page-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.page-subtitle {
    margin-top: 10px;
    color: var(--text-secondary);
}

/* ===============================
   CONTENT BLOCK
================================ */

.content-block {
    margin-bottom: 80px;
}

.content-block.alt-bg {
    padding: 50px 40px;
    border-radius: 24px;

    background: linear-gradient(
        180deg,
        rgba(15, 8, 10, 0.75),
        rgba(8, 4, 6, 0.85)
    );

    box-shadow:
        0 0 0 1px rgba(255,26,26,0.15),
        0 30px 90px rgba(0,0,0,0.8);
}

/* ===============================
   SECTION TITLE
================================ */

.section-title {
    font-size: 1.6rem;
    margin-bottom: 26px;
    text-align: center;
}

/* ===============================
   HARDWARE GRID (KEY FIX)
================================ */

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ❗ bewusst fix */
    gap: 26px;
    margin-top: 30px;
}

/* ===============================
   SPEC CARD (SHOWCASE)
================================ */

.spec-card {
    background: linear-gradient(
        145deg,
        rgba(18, 10, 14, 0.95),
        rgba(8, 4, 6, 0.98)
    );

    border-radius: 20px;
    padding: 26px 24px;
    text-align: center;

    border: 1px solid rgba(255,26,26,0.25);

    box-shadow:
        0 15px 45px rgba(0,0,0,0.85),
        0 0 35px rgba(255,26,26,0.2);

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

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.9),
        0 0 45px rgba(255,26,26,0.35);
}

/* ===============================
   SPEC CONTENT
================================ */

.spec-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.spec-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===============================
   HARDWARE LIST (REWORKED)
   → ebenfalls Cards, nicht links leer
================================ */

.hardware-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hardware-list li {
    padding: 18px 20px;
    border-radius: 14px;

    background: rgba(14, 8, 10, 0.85);
    border: 1px solid rgba(255,26,26,0.2);

    font-size: 0.9rem;
    color: var(--text-secondary);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.7);
}

/* ===============================
   CATEGORY FILTER
================================ */

.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-filter a {
    padding: 10px 20px;
    border-radius: 999px;

    background: rgba(20,10,10,0.85);
    border: 1px solid rgba(255,26,26,0.25);

    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

.category-filter a.active {
    background: rgba(255,26,26,0.25);
    border-color: rgba(255,26,26,0.6);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hardware-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hardware-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }
}
