/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95);
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 3rem 0;
    border-right: 1px solid rgba(179, 162, 113, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 2px solid rgba(179, 162, 113, 0.8);
}

.nav-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
}

.nav-link {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    transform: rotate(180deg);
}

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

.nav-link.active {
    color: #b3a271;
}

/* Nav Bottom (CV + Social) */
.nav-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
}

/* CV Download Button */
.cv-download {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.cv-download i {
    font-size: 1.6rem;
}

.cv-download span {
    display: none;
}

.cv-download:hover {
    color: #b3a271;
    transform: scale(1.1);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.social-link svg {
    width: 28px;
    height: 28px;
}

.social-link:hover {
    color: #b3a271;
    transform: scale(1.1);
}
