/* =========================================
   Navigation Container
   ========================================= */
nav.navbar {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    nav.navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        padding: 2.5rem 0;
        margin-bottom: 2rem;
    }
}

/* =========================================
   Logo Styling
   ========================================= */
.logo {
    margin-bottom: 1rem; 
    display: flex;
    align-items: baseline; 
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .logo {
        margin-bottom: 0;
    }
}

.logo a {
    font-family: 'Space Grotesk', sans-serif; 
    font-weight: 700;
    font-size: 1.75rem;
    color: #006aff; 
    text-decoration: none;
    letter-spacing: -0.03em; 
    transition: color 0.2s ease;
    margin-right: 0.5rem; 
}

.logo a:hover {
    color: #000000; 
}


.logo-text {
    font-family: 'Space Grotesk', sans-serif; 
    font-weight: 700;
    font-size: 1.75rem;
    color: #000000; 
    letter-spacing: -0.03em;
    cursor: default; 
}

/* =========================================
   Navigation Links
   ========================================= */
.links {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #94a3b8; 
}

.links a {
    color: #006aff; 
    text-decoration: none;
    font-weight: 500;
    margin: 0 0.1rem;
    transition: all 0.2s ease;
}

.links a:hover {
    color: #000000; 
    text-decoration: underline;
    text-underline-offset: 4px; 
}

.links a.active {
    color: #000000 !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}