/**
 * Part of LinkMyGoals.com project.
 * GitHub: https://github.com/ChadsCode/LinkMyGoals
 * License: MIT Open-Source
 * Website: https://www.linkmygoals.com/
 *
 * Copyright (c) 2025 Chad Wigington
 * LinkedIn: https://www.linkedin.com/in/chadwigington/
 */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-shadow: var(--shadow-sm);
}

.header-left {
    flex-shrink: 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--linkedin-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-tld {
    color: var(--text-secondary);
    font-weight: 400;
}

.header-right {
    flex-shrink: 0;
}

.claude-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
    background: var(--pearl);
}

.claude-link:hover {
    background: var(--linkedin-blue-alpha);
    color: var(--linkedin-blue);
}

.claude-badge {
    font-weight: 400;
    color: var(--text-muted);
}

.claude-name {
    font-weight: 600;
    color: var(--charcoal);
}

.claude-link:hover .claude-name {
    color: var(--linkedin-blue);
}