:root {
    --bg-color: #0e0e0e;    /* Rich Black */
    --text-color: #e0e0e0;  /* Off-White */
    --lens-color: #e0e0e0;  /* The circle color (white) */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none; /* We hide the default cursor for a custom feel */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- The Interactive Lens --- */
#cursor-lens {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px; /* Big bold circle */
    height: 400px;
    background-color: var(--lens-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Let clicks pass through */
    z-index: 1;
    mix-blend-mode: exclusion; /* THE MAGIC: This inverts colors beneath it */
    transition: width 0.3s ease, height 0.3s ease;
}

/* --- Layout --- */
.layout {
    position: relative;
    z-index: 2; /* Sits 'under' the mix-blend mode visually but structurally above */
    width: 90%;
    max-width: 1600px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align */
    justify-content: center;
    height: 100vh;
}

/* --- Typography --- */
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 16vw; /* Massive, scales with screen */
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-color);
    user-select: none;
    transition: transform 0.2s ease-out;
}

.period {
    color: var(--text-color); /* Matches text, but blend mode makes it pop */
}

/* --- Navigation --- */
.scandi-nav {
    margin-top: 6vh;
    display: flex;
    gap: 4vw;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    padding: 10px 0;
    transition: opacity 0.3s ease;
}

.line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover .line {
    width: 100%;
}

.nav-link:hover {
    opacity: 0.8;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    #cursor-lens {
        width: 150px;
        height: 150px;
    }
    
    .brand-name {
        font-size: 18vw;
    }

    .scandi-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    
    /* Bring back normal cursor on touch devices */
    * { cursor: auto; }
    #cursor-lens { display: none; } 
}
