/* --- PRINTING PAGE SPECIFIC --- */
.page-header-pro.printing-header-bg { 
    width: 100%; 
    min-height: 60vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    overflow: hidden; 
    background: #000;
}

.printing-header-bg::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    /* Ensure this path matches your folder exactly */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('./images/printing_image.jpg') center/cover no-repeat !important; 
    z-index: 1; 
    animation: pro-zoom 20s infinite alternate ease-in-out; 
}

/* Forces content to sit on top of the image */
.printing-header-bg .content-box {
    position: relative;
    z-index: 10;
}

/* --- THE COLOR PALETTE GRID --- */
.pro-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    padding: 60px 10%; 
    background: #000; 
}

.pro-card { 
    background: #080808; 
    padding: 30px; 
    border: 1px solid #111; 
    text-align: center; 
    transition: 0.3s;
}

.pro-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.color-circle { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    margin: 0 auto 15px; 
    border: 2px solid #333; 
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}