@import url("styles.css");

/* Minimal Top Nav styles */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    pointer-events: none;
}

.nav>* {
    pointer-events: auto;
}

.nav-brand {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--text-primary);
}

.theme-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(100, 100, 100, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.theme-btn:hover {
    color: var(--text-primary);
}

.theme-btn .icon-sun {
    display: none;
}

.theme-btn .icon-moon {
    display: block;
    width: 16px;
    height: 16px;
}

[data-theme='light'] .theme-btn .icon-sun {
    display: block;
    width: 16px;
    height: 16px;
}

[data-theme='light'] .theme-btn .icon-moon {
    display: none;
}

/* Experience Pointers Formatting */
.experience-pointers p {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

#publications .publication-item {
    margin-bottom: 1rem;
}