/* Header Styles */
.header {
    background: var(--navy-light);
    border-bottom: 1px solid var(--navy-lighter);
    padding: 20px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.shield-icon {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.nav-wordmark {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    letter-spacing: -0.3px;
}

/* User Menu & Dropdown */
.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.user-dropdown {
    position: relative;
}

.user-email {
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--navy-lighter);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-email:hover {
    background: var(--navy-lighter);
    border-color: var(--blue);
}

.user-email svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray);
    transition: transform 0.2s ease;
}

.user-dropdown.active .user-email svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--navy-light);
    border: 1px solid var(--navy-lighter);
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.user-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--navy-lighter);
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gray);
}

.dropdown-item.logout {
    color: var(--red);
}

.dropdown-item.logout svg {
    stroke: var(--red);
}
