/* Global Navigation Styles */
:root {
    --nav-height: 60px;
    --nav-bg: #ffffff;
    --nav-text: #374151;
    --nav-hover: #3b82f6;
    --nav-border: #e5e7eb;
}

#global-header {
    width: 100%;
    height: var(--nav-height);
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', system-ui, sans-serif;
}

.gh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gh-logo {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gh-logo span {
    color: var(--nav-hover);
}

.gh-nav {
    display: flex;
    gap: 1.5rem;
}

.gh-link {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem;
    border-radius: 6px;
}

.gh-link:hover {
    color: var(--nav-hover);
    background-color: #f3f4f6;
}

/* Mobile Menu Simple Implementation */
@media (max-width: 640px) {
    .gh-link span {
        display: none;
    }

    .gh-nav {
        gap: 1rem;
    }
}