/* assets/css/reset.css */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    ::selection {
        background: var(--color-orange);
        color: var(--color-light);
    }
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* Required for Lenis */
    background: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    background: none;
    border: none;
    cursor: none;
}

/* Hide default cursor entirely */
html, body, a, button, input, textarea {
    cursor: none !important;
}

/* Pre-loader Curtain Screen */
.curtain-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-light);
    font-family: var(--font-heading);
    font-size: var(--h2-size);
}
.curtain-loader.loaded {
    animation: slideUp 1s var(--ease-expo) forwards;
}

@keyframes slideUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Custom Circle Cursor (Awwwards Vibe) */
.custom-cursor {
    width: 15px;
    height: 15px;
    background-color: var(--color-orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), background-color 0.3s var(--ease-expo);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 0; /* Hide text normally */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    mix-blend-mode: difference;
}

/* Expansion State when hovering images */
.custom-cursor.view-mode {
    width: 100px;
    height: 100px;
    background-color: var(--color-light);
    font-size: 1rem;
    mix-blend-mode: normal;
}

/* Magnetic Element Hover State */
.custom-cursor.magnetic-hover {
    width: 40px;
    height: 40px;
    background-color: var(--color-teal);
    mix-blend-mode: normal;
}
