/* Header Styles - AG ONE Public Landing Page */

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

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: auto;
    height: 100%;
    padding: 4px 0;
    text-decoration: none;
}

.sidebar-logo-icon {
    height: 63px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Login CTA Button - slightly rounded rectangle, blue-to-purple gradient */
.header-login-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4779F7 0%, #7742FF 100%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    line-height: 1;
    letter-spacing: 0.2px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.header-login-cta:hover {
    background: linear-gradient(135deg, #3b66e0 0%, #6635e6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(119, 66, 255, 0.35);
    color: white;
    text-decoration: none;
}

.header-login-cta:active {
    transform: translateY(0);
}

.header-login-cta svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.header-login-cta:hover svg {
    transform: translateX(2px);
}

/* MudBlazor AppBar Override */
.mud-appbar.header-appbar {
    background: #ffffff !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06) !important;
    min-height: 64px !important;
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* Public Main Content - no padding for full-bleed hero */
.public-main-content {
    padding-top: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }

    .sidebar-logo-icon {
        height: 32px;
    }

    .header-login-cta {
        padding: 6px 16px;
        font-size: 13px;
    }
}