.navbar {
    padding: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

.logo {
    height: 128px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-light-blue);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--color-dark-blue);
}

.nav-link.active {
    color: var(--color-light-blue);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--color-dark-blue);
}

.nav-icon {
    width: 22px;
    height: 22px;
    color: var(--color-dark-white);
    text-decoration: none;
    scale: 1.3;
    transition: transform 0.3s;
}

.nav-icon:hover {
    transform: scale(1.1);
}
