/* components.css */
/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    mix-blend-mode: difference;
}

.nav-brand {
    font-size: 1.25rem;
    color: var(--color-off-white);
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-pale-blue);
    transition: var(--transition-smooth);
}

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

/* Custom Cursor */
.custom-cursor {
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        border: 1px solid rgba(229, 231, 235, 0.5);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
        z-index: 9999;
        mix-blend-mode: difference;
    }

    .custom-cursor.hover {
        width: 40px;
        height: 40px;
        background-color: rgba(229, 231, 235, 0.1);
        border-color: rgba(229, 231, 235, 0.8);
    }

    body {
        cursor: none;
    }

    a,
    button {
        cursor: none;
    }
}

/* Footer */
.footer {
    padding: 64px 24px 32px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-medium-gray);
    letter-spacing: 0.1em;
}

/* Audio Control */
.audio-control {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
    background: none;
    border: none;
    color: var(--color-light-gray);
    font-family: var(--font-body-en);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.audio-control:hover {
    opacity: 1;
}