/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1A73E8;
}

/* Navigasjon */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
}

/* Understrek-animert hover */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #1A73E8;
    transition: width 0.25s ease;
}

.nav a:hover {
    color: #1A73E8;
}

.nav a:hover::after {
    width: 100%;
}

/* Skjul desktop-nav på mobil */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
        font-size: 28px;
        cursor: pointer;
        z-index: 20;
    }
}
