/* Designs Page Specific Styles */

:root {
    --color-neutral-900: #08090d;
    --hue1: 255;
    --hue2: 222;
}

body {
    position: relative;
    font-family: 'Anton', sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    cursor: none;
}

body::before {
    content: '';
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 800px;
    background-image: url(https://assets.codepen.io/13471/abstract-light.jpg), linear-gradient(to right in oklab, hsl(var(--hue2) 80% 60%), hsl(var(--hue1) 80% 60%));
    background-size: cover;
    background-position: center center;
    background-blend-mode: hard-light;
    z-index: 0;
    pointer-events: none;
    will-change: background-image;
    transform: translateZ(0);
}

.cursor-light {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: left 0.1s ease, top 0.1s ease;
    mix-blend-mode: screen;
}

.designs-page {
    padding-top: 150px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}

.designs-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.design-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1a1a1a;
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.design-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.design-overlay h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
}

.design-overlay p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.design-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.design-item:hover img {
    transform: scale(1.1);
}

.design-item:hover .design-overlay {
    transform: translateY(0);
}


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

@media (max-width: 768px) {
    .designs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

