/* Navigation Styles */

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-icon {
    font-size: 0.8rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    opacity: 1;
}

.nav-item:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

/* Social Float */
.social-float {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.social-float a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.social-float a:hover {
    background: var(--white);
    transform: scale(1.1);
}

.social-float a::after {
    content: attr(data-label);
    position: absolute;
    left: 100%;
    margin-left: 1rem;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-float a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.social-float svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: all 0.3s ease;
}

.social-float a:hover svg {
    fill: var(--black);
}