/* Shared Navigation Styles */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    width: 60px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.nav-link:first-child {
    text-align: right;
}

.nav-link:last-child {
    text-align: left;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #3460e1;
}

/* Home logo */
.home-dot {
    width: 24px;
    height: 24px;
    margin: 0 1.5rem;
    background-image: url('assets/logo-blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.home-dot:hover {
    opacity: 1;
}

.home-dot.active {
    opacity: 1;
}

/* Light background variant (for heal page) */
.nav.light .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.nav.light .nav-link:hover {
    color: #000000;
}

.nav.light .nav-link.active {
    color: #3460e1;
}


@media (max-width: 768px) {
    .nav {
        padding: 1.5rem;
    }
}
