<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.navbar {
    background: var(--secondary-color);
    box-shadow: 0 5px 15px var(--light-primary, 0.15);
    backdrop-filter: blur(10px);
}

.navbar-nav {
    margin-right: 100px;
}

.nav-item {
    margin: 0 10px;
}

.navbar-brand {
    mix-blend-mode: multiply;
}

.navbar-brand,
.nav-link {
    align-items: center;
}

.nav-link {
    position: relative;
    color: #333333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--dark-primary);
    transition: width 0.3s ease;
}

@media screen and (min-width: 768px) {
    .nav-link:hover::after {
        width: 100%;
        border-radius: 10px;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
        scale: 1.1;
    } 
}

#contact-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
}

#contact-btn:hover {
    background-color: var(--dark-primary);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.navbar {
    z-index: 1001;
    /* Higher than landing section */
}</pre></body></html>