/* SEKCJA */
.np-gadgets {
    position: relative;
    padding: 120px 0;
    background: url("/assets/images/gadgets-bg.jpg") center / cover no-repeat;
    overflow: hidden;
}

/* MLECZNY OVERLAY */
.np-gadgets-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* CONTENT */
.np-gadgets-content {
    position: relative;
    z-index: 2;
}

/* HEADER */
.np-gadgets-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.np-gadgets-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.np-gadgets-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 20px;
}

.np-gadgets-lead {
    font-size: 18px;
    font-weight: 600;
}

.np-gadgets-logo {
    max-width: 200px;
}

/* GRID */
.np-gadgets-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

/* KAFELKI */
.np-tile {
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: default;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.np-tile span {
    line-height: 1.4;
}

/* HOVER */
.np-tile:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* CMYK KOLORY */
.cmyk-c {
    background: #00b7eb;
    color: #000;
}

.cmyk-m {
    background: #e6007e;
    color: #000;
}

.cmyk-y {
    background: #fff200;
    color: #000;
}

.cmyk-k {
    background: #000;
    color: #fff;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1200px) {
    .np-gadgets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .np-gadgets-header {
        flex-direction: column;
        gap: 30px;
    }

    .np-gadgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .np-gadgets-logo {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .np-gadgets-grid {
        grid-template-columns: 1fr;
    }
}