/* 
    LEGACY FLATWORK | MAIN STYLESHEET V3
    Consistently optimized for high-end performance and architectural precision.
*/

:root {
    --primary: #111111;
    --accent: #e51013;
    --surface: #F4F4F4;
    --muted: #888888;
}

body { 
    font-family: 'Epilogue', sans-serif; 
    background: #fff; 
    color: var(--primary); 
    -webkit-font-smoothing: antialiased; 
}

h1, h2, h3, h4 { 
    font-family: 'Archivo Black', sans-serif; 
}

* { 
    border-radius: 0 !important; 
}

/* Material Symbols Overrides */
.material-symbols-outlined { 
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; 
    font-family: 'Material Symbols Outlined'; 
    font-weight: normal; 
    font-style: normal; 
    display: inline-block; 
    line-height: 1; 
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    background: transparent;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-cursor::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
}

/* Slider Architecture */
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slider-item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .slider-item {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .slider-item {
        flex: 0 0 50%;
    }
}
